INTRODUCTION Video games are widely played all over the world and the industries in this area of business have tremendously grown in the past decades. Video games are electronic designed algorithm that are incorporated into a computing device which includes computers (either desktop or laptop), mobile phone or a gaming console. Video games are subdivided into mobile games and computers, which solely dependent on the platforms. In the early 80s and late 70s, there were two major markets for video games, the home and the arcade markets. The arcade market generated approximately 8 billion USD more than pop music as at 1982 drawing huge attention from investors. The video games have then grown tremendously and the games enjoyed all over the world by all class of people irrespective of their age. More so, some video games have come and gone while others still in the industry are developing modern games with the needs of the people and with the growing technologies VIDEO GAMES INDUSTRY PROJECTION In 2016, The market research conducted by the Newzoo firm showed that it predicts the global game market to grow up to $99.6 billion which was about 8.4 percent when compared to that of the previous year. In this year, the firm also predicted that mobile games will experience more sales for the first time over the console games industry with 21.3 percent growth when compared to previous year. TRENDS IN THE INDUSTRY OVER THE YEARS 1. Sales of games are dominant in the North America region 2.puzzled games has obviously declined in the game popularity while Action and adventure games have experienced positive growth.

PROJECT OVERVIEW The main aim of the project is to show relationshiop in sales Other aims includes a. Sales at different regions of the world b. Popualar genre at global sales c. Popular Publishers at global sales d The year with the highest number of sales. a. to see if there are relationships between sales of the regions b. to see if there are relationship between sales and genres in the different regions of the world This we can achieve through data visualization after that we can further do the following data analysis, to note observable changes in comparing the genre of a game and the platform which they are released in, to ascertain if there are any relationship between sales in the regions, genres and sales. KEYS TO NOTE: Name: Name of the video game

Platform: Platform on which the game was released or is playable

Year: Year in which the game was released

Genre: Genre the game belongs to

Publisher: Name of the publisher who created the game

NA_Sales: Sales in North America

EU_Sales: Sales in Europe

JP_Sales: Sales in Japan

Other_Sales: Sales in other countries

Global_Sales: Global Sales DATA The data for the project was obtained from (https://www.kaggle.com/rush4ratio/video-game-sales-with-ratings/data#Video_Games_Sales_as_at_22_Dec_2016.csv) which was already in it tidy state and available for machine learning analsysis. The data provided insight on the trends of video game industrie for over 30 years in the different regions of the world and also at global perspective.

EXECUIVE SUMMARY The analysis offered me great insight into the details of the video game industry which are widely played and enjoyed by all regions of the world regardless of age. The analysis revealed that there is a relationship between regional sales and globall. That the increase or decrease in regional sales will proportional influence global sales. And that North America regions are the highest consumers of video games followed by European Union. Similarly, Shooter, Sport and Action genres have maintained top spot in the video game industry over the years. And that DS, PS, XBOX and Wii are in the top spots of the video game industry.

METHDOLOGY AND ANALYSIS #load packages

if(!require(tidyverse)) install.packages("tidyverse", repos = "http://cran.us.r-project.org")
## Loading required package: tidyverse
## ── Attaching packages ───────────────────────────────────────────── tidyverse 1.3.0 ──
## <U+2713> ggplot2 3.2.1     <U+2713> purrr   0.3.3
## <U+2713> tibble  2.1.3     <U+2713> dplyr   0.8.3
## <U+2713> tidyr   1.0.0     <U+2713> stringr 1.4.0
## <U+2713> readr   1.3.1     <U+2713> forcats 0.4.0
## ── Conflicts ──────────────────────────────────────────────── tidyverse_conflicts() ──
## x dplyr::filter() masks stats::filter()
## x dplyr::lag()    masks stats::lag()
if(!require(caret)) install.packages("caret", repos = "http://cran.us.r-project.org")
## Loading required package: caret
## Loading required package: lattice
## 
## Attaching package: 'caret'
## The following object is masked from 'package:purrr':
## 
##     lift
if(!require(data.table)) install.packages("data.table", repos = "http://cran.us.r-project.org")
## Loading required package: data.table
## 
## Attaching package: 'data.table'
## The following objects are masked from 'package:dplyr':
## 
##     between, first, last
## The following object is masked from 'package:purrr':
## 
##     transpose
library(viridis)
## Loading required package: viridisLite
library(wordcloud)
## Loading required package: RColorBrewer
library(RColorBrewer)
library(magrittr)
## 
## Attaching package: 'magrittr'
## The following object is masked from 'package:purrr':
## 
##     set_names
## The following object is masked from 'package:tidyr':
## 
##     extract
library(lubridate)
## 
## Attaching package: 'lubridate'
## The following objects are masked from 'package:data.table':
## 
##     hour, isoweek, mday, minute, month, quarter, second, wday, week,
##     yday, year
## The following object is masked from 'package:base':
## 
##     date
library(RPostgreSQL)
## Loading required package: DBI
library(plotly)
## 
## Attaching package: 'plotly'
## The following object is masked from 'package:ggplot2':
## 
##     last_plot
## The following object is masked from 'package:stats':
## 
##     filter
## The following object is masked from 'package:graphics':
## 
##     layout
library(jsonlite)
## 
## Attaching package: 'jsonlite'
## The following object is masked from 'package:purrr':
## 
##     flatten
library(htmltools)
library(glmnet)
## Loading required package: Matrix
## 
## Attaching package: 'Matrix'
## The following objects are masked from 'package:tidyr':
## 
##     expand, pack, unpack
## Loaded glmnet 3.0-2
library(epitools)
library(lme4)
library(sjPlot)
## #refugeeswelcome
library(pscl)
## Classes and Methods for R developed in the
## Political Science Computational Laboratory
## Department of Political Science
## Stanford University
## Simon Jackman
## hurdle and zeroinfl functions by Achim Zeileis

#loading of dataset

VIDEOGS <- read.csv("D:/john/Videogs_2016.csv")
VIDEOGS
##                                                                                                                        Name
## 1                                                                                                                Wii Sports
## 2                                                                                                         Super Mario Bros.
## 3                                                                                                            Mario Kart Wii
## 4                                                                                                         Wii Sports Resort
## 5                                                                                                  Pokemon Red/Pokemon Blue
## 6                                                                                                                    Tetris
## 7                                                                                                     New Super Mario Bros.
## 8                                                                                                                  Wii Play
## 9                                                                                                 New Super Mario Bros. Wii
## 10                                                                                                                Duck Hunt
## 11                                                                                                               Nintendogs
## 12                                                                                                            Mario Kart DS
## 13                                                                                              Pokemon Gold/Pokemon Silver
## 14                                                                                                                  Wii Fit
## 15                                                                                                       Kinect Adventures!
## 16                                                                                                             Wii Fit Plus
## 17                                                                                                       Grand Theft Auto V
## 18                                                                                            Grand Theft Auto: San Andreas
## 19                                                                                                        Super Mario World
## 20                                                                             Brain Age: Train Your Brain in Minutes a Day
## 21                                                                                            Pokemon Diamond/Pokemon Pearl
## 22                                                                                                         Super Mario Land
## 23                                                                                                      Super Mario Bros. 3
## 24                                                                                                       Grand Theft Auto V
## 25                                                                                              Grand Theft Auto: Vice City
## 26                                                                                            Pokemon Ruby/Pokemon Sapphire
## 27                                                                              Brain Age 2: More Training in Minutes a Day
## 28                                                                                              Pokemon Black/Pokemon White
## 29                                                                                                   Gran Turismo 3: A-Spec
## 30                                                                                           Call of Duty: Modern Warfare 3
## 31                                                                                 Pok茅mon Yellow: Special Pikachu Edition
## 32                                                                                                Call of Duty: Black Ops 3
## 33                                                                                                  Call of Duty: Black Ops
## 34                                                                                                      Pokemon X/Pokemon Y
## 35                                                                                               Call of Duty: Black Ops II
## 36                                                                                               Call of Duty: Black Ops II
## 37                                                                                           Call of Duty: Modern Warfare 2
## 38                                                                                           Call of Duty: Modern Warfare 3
## 39                                                                                                     Grand Theft Auto III
## 40                                                                                                  Super Smash Bros. Brawl
## 41                                                                                                             Mario Kart 7
## 42                                                                                                  Call of Duty: Black Ops
## 43                                                                                                       Grand Theft Auto V
## 44                                                                                              Animal Crossing: Wild World
## 45                                                                                                                   Halo 3
## 46                                                                                                           Super Mario 64
## 47                                                                                     Pokemon HeartGold/Pokemon SoulSilver
## 48                                                                                Pokemon Omega Ruby/Pokemon Alpha Sapphire
## 49                                                                                                           Gran Turismo 4
## 50                                                                                                       Super Mario Galaxy
## 51                                                                                       Super Mario Land 2: 6 Golden Coins
## 52                                                                                                      Grand Theft Auto IV
## 53                                                                                                             Gran Turismo
## 54                                                                                                      Super Mario 3D Land
## 55                                                                                                           Gran Turismo 5
## 56                                                                                           Call of Duty: Modern Warfare 2
## 57                                                                                                    Super Mario All-Stars
## 58                                                                                                      Grand Theft Auto IV
## 59                                                                                        Pokemon FireRed/Pokemon LeafGreen
## 60                                                                                                           Super Mario 64
## 61                                                                                                     Call of Duty: Ghosts
## 62                                                                                                             Just Dance 3
## 63                                                                                                  New Super Mario Bros. 2
## 64                                                                                                            Mario Kart 64
## 65                                                                                                              Halo: Reach
## 66                                                                                                        Final Fantasy VII
## 67                                                                                                                   Halo 4
## 68                                                                                                           Gran Turismo 2
## 69                                                                                                             Just Dance 2
## 70                                                                                                     Call of Duty: Ghosts
## 71                                                                                           Call of Duty 4: Modern Warfare
## 72                                                                                                      Donkey Kong Country
## 73                                                                                                                Minecraft
## 74                                                                                                Animal Crossing: New Leaf
## 75                                                                                                           Mario Party DS
## 76                                                                                              The Elder Scrolls V: Skyrim
## 77                                                                                                         Super Mario Kart
## 78                                                                                                                  FIFA 16
## 79                                                                                                                   Halo 2
## 80                                                                                                                Wii Party
## 81                                                                                                            Mario Party 8
## 82                                                                                                           FIFA Soccer 13
## 83                                                                                                            GoldenEye 007
## 84                                                                                          Pokemon Black 2/Pokemon White 2
## 85                                                                                                          Final Fantasy X
## 86                                                                                                               The Sims 3
## 87                                                                                       Mario & Sonic at the Olympic Games
## 88                                                                                             Star Wars Battlefront (2015)
## 89                                                                                                       Final Fantasy VIII
## 90                                                                                                                  Pac-Man
## 91                                                                                                Pok茅mon Platinum Version
## 92                                                                                   Grand Theft Auto: Liberty City Stories
## 93                                                                                           Call of Duty: Advanced Warfare
## 94                                                                                     The Legend of Zelda: Ocarina of Time
## 95                                                                                                                  FIFA 17
## 96                                                                                   Crash Bandicoot 2: Cortex Strikes Back
## 97                                                                                      Super Smash Bros. for Wii U and 3DS
## 98                                                                                                     Super Mario Galaxy 2
## 99                                                                                                      Super Mario Bros. 2
## 100                                                                                               Call of Duty: Black Ops 3
## 101                                                                                              Call of Duty: World at War
## 102                                                                                                           Battlefield 3
## 103                                                                                              Need for Speed Underground
## 104                                                                                                              Just Dance
## 105                                                                                                           Battlefield 3
## 106                                                                                                               Fallout 4
## 107                                                                                                                Tekken 3
## 108                                                                                  The Legend of Zelda: Twilight Princess
## 109                                                                                                        Pokemon Sun/Moon
## 110                                                                                               Crash Bandicoot 3: Warped
## 111                                                                                                            Mario Kart 8
## 112                                                                                                 Super Smash Bros. Melee
## 113                                                                                               Mario Kart: Double Dash!!
## 114                                                                                            Need for Speed Underground 2
## 115                                                                                               Medal of Honor: Frontline
## 116                                                                                                         Crash Bandicoot
## 117                                                                                                            Just Dance 4
## 118                                                                                                          Gears of War 2
## 119                                                                                          Uncharted 3: Drake's Deception
## 120                                                                                                           Zumba Fitness
## 121                                                                                          Call of Duty 4: Modern Warfare
## 122                                                                                              Uncharted 2: Among Thieves
## 123                                                                                                                 FIFA 12
## 124                                                                                                       Big Brain Academy
## 125                                                                                                     The Legend of Zelda
## 126                                                                                                     Red Dead Redemption
## 127                                                                                                                 FIFA 14
## 128                                                                                                    Assassin's Creed III
## 129                                                                                             Donkey Kong Country Returns
## 130                                                                                                    Halo: Combat Evolved
## 131                                                                                             The Elder Scrolls V: Skyrim
## 132                                                                                                Pok茅mon Emerald Version
## 133                                                                                                          Kingdom Hearts
## 134                                                                                                Pok茅mon Crystal Version
## 135                                                                                                            Halo 3: ODST
## 136                                                                                                     Red Dead Redemption
## 137                                                                                                    Super Mario Sunshine
## 138                                                                                    Street Fighter II: The World Warrior
## 139                                                                                                       World of Warcraft
## 140                                                                                                                  Driver
## 141                                                                                                          Gears of War 3
## 142                                                                                                           Kinect Sports
## 143                                                                                                            Gears of War
## 144                                                                                                                 FIFA 15
## 145                                                                                     Metal Gear Solid 2: Sons of Liberty
## 146                                                                                                    Sonic the Hedgehog 2
## 147                                                                                                        Metal Gear Solid
## 148                                                                                Metal Gear Solid 4: Guns of the Patriots
## 149                                                                                                       Final Fantasy XII
## 150                                                                                                          The Last of Us
## 151                                                                                                         LittleBigPlanet
## 152                                                                                                         Resident Evil 2
## 153                                                                          Dragon Quest IX: Sentinels of the Starry Skies
## 154                                                                                                                Tekken 2
## 155                                                                                                                 Destiny
## 156                                                                                       LEGO Star Wars: The Complete Saga
## 157                                                                                                            Cooking Mama
## 158                                                                                                                  Tetris
## 159                                                                                                       Super Smash Bros.
## 160                                                                                                     Assassin's Creed II
## 161                                                                                                        Assassin's Creed
## 162                                                                                                      Forza Motorsport 3
## 163                                                                                                     Super Mario Advance
## 164                                                                                            Monster Hunter Freedom Unite
## 165                                                                                                     Batman: Arkham City
## 166                                                                                                      Grand Theft Auto V
## 167                                                                                               Mario Kart: Super Circuit
## 168                                                                                                       Super Mario World
## 169                                                                                                         Pokemon Stadium
## 170                                                                                    Crash Bandicoot: The Wrath of Cortex
## 171                                                                                              Call of Duty: World at War
## 172                                                                                              Uncharted 4: A Thief's End
## 173                                                                                                               Dr. Mario
## 174                                                                                                      Final Fantasy XIII
## 175                                                                                                         Pokemon Pinball
## 176                                                                                                        Final Fantasy IX
## 177                                                                                                    Assassin's Creed III
## 178                                                                                                       Final Fantasy X-2
## 179                                                                                                          Donkey Kong 64
## 180                                                                                          Call of Duty: Advanced Warfare
## 181                                                                                                               Minecraft
## 182                                                                                                     Assassin's Creed II
## 183                                                                                                          Tomb Raider II
## 184                                                                                                         Madden NFL 2004
## 185                                                                                                          Tomodachi Life
## 186                                                                                                 New Super Mario Bros. U
## 187                                                                           Dragon Quest VIII: Journey of the Cursed King
## 188                                                                                                     Super Mario Bros. 3
## 189                                                                                Professor Layton and the Curious Village
## 190                                                                                          Super Mario Land 3: Wario Land
## 191                                                                                                          FIFA Soccer 13
## 192                                                                               Donkey Kong Country 2: Diddy's Kong Quest
## 193                                                                                                              Diablo III
## 194                                                                                              Medal of Honor: Rising Sun
## 195                                                                                                      Kirby's Dream Land
## 196                                                                                              Microsoft Flight Simulator
## 197                                                                                                          Guitar Hero II
## 198                                                                                                               Fable III
## 199                                                                                      Mario & Sonic at the Olympic Games
## 200                                                                                                         Resident Evil 5
## 201                                                                                  The Legend of Zelda: Phantom Hourglass
## 202                                                                                                       Super Mario Bros.
## 203                                                                                                          FIFA Soccer 11
## 204                                                                                                           Resident Evil
## 205                                                                                     Grand Theft Auto: Vice City Stories
## 206                                                                                                  Tony Hawk's Pro Skater
## 207                                                                                                            Warzone 2100
## 208                                                                                                        Spyro the Dragon
## 209                                                                                        Guitar Hero III: Legends of Rock
## 210                                                                                                Link's Crossbow Training
## 211                                                        Pokemon Mystery Dungeon: Explorers of Time/Explorers of Darkness
## 212                                                                                                               Fallout 3
## 213                                                                                              Uncharted: Drake's Fortune
## 214                                                                                                           Madden NFL 06
## 215                                                                                                       Diddy Kong Racing
## 216                                                                                                Monster Hunter Freedom 3
## 217                                                                                     Super Smash Bros. for Wii U and 3DS
## 218                                                                                                               Dr. Mario
## 219                                                                                          StarCraft II: Wings of Liberty
## 220                                                                                                        Assassin's Creed
## 221                                                                                                          God of War III
## 222                                                                                                       Crash Team Racing
## 223                                                                                       LEGO Star Wars: The Complete Saga
## 224                                                                                                                Driver 2
## 225                                                                                                     Batman: Arkham City
## 226                                                                                                          The Last of Us
## 227                                                                                                 The Simpsons: Hit & Run
## 228                                                                                                Tony Hawk's Pro Skater 2
## 229                                                                                   The Lord of the Rings: The Two Towers
## 230                                                                                                             Tomb Raider
## 231                                                                                              Animal Crossing: City Folk
## 232                                                                                  Uncharted: The Nathan Drake Collection
## 233                                                                                 The Legend of Zelda: A Link to the Past
## 234                                                                                     The Legend of Zelda: The Wind Waker
## 235                                                                                        Guitar Hero III: Legends of Rock
## 236                                                                                              Luigi's Mansion: Dark Moon
## 237                                                                                                      Forza Motorsport 4
## 238                                                                               Mario & Sonic at the Olympic Winter Games
## 239                                                                                                         Madden NFL 2005
## 240                                                                                        Guitar Hero III: Legends of Rock
## 241                                                                                                                Pitfall!
## 242                                                                                                           Madden NFL 07
## 243                                                                                                       Halo 5: Guardians
## 244                                                                                                   Spider-Man: The Movie
## 245                                                                                      Dragon Quest VII: Warriors of Eden
## 246                                                                                          Call of Duty: Infinite Warfare
## 247                                                                                                              God of War
## 248                                                                                                                Splatoon
## 249                                                                                                           Nintendo Land
## 250                                                                                                Tony Hawk's Pro Skater 3
## 251                                                                               Winning Eleven: Pro Evolution Soccer 2007
## 252                                                                                          The Elder Scrolls IV: Oblivion
## 253                                                                                         Zelda II: The Adventure of Link
## 254                                                                                             Need for Speed: Most Wanted
## 255                                                                                         Michael Jackson: The Experience
## 256                                                                                          Call of Duty: Advanced Warfare
## 257                                                                                                 Resistance: Fall of Man
## 258                                                                                                      Sonic the Hedgehog
## 259                                                                                                       Kingdom Hearts II
## 260                                                                                    The Legend of Zelda: Ocarina of Time
## 261                                                                                                    Super Mario 3D World
## 262                                                                                                               Minecraft
## 263                                                                                                               Asteroids
## 264                                                                                          Call of Duty: Advanced Warfare
## 265                                                                                                                 FIFA 15
## 266                                                                                                                Fable II
## 267                                                                                                            Namco Museum
## 268                                                                                                   Batman: Arkham Asylum
## 269                                                                                         Metal Gear Solid 3: Snake Eater
## 270                                                                                           Assassin's Creed: Revelations
## 271                                                                                                               Fallout 4
## 272                                                                                                                 FIFA 14
## 273                                                                                                                  Daxter
## 274                                                                                          Warcraft II: Tides of Darkness
## 275                                                                                                          FIFA Soccer 06
## 276                                                                                                             EyeToy Play
## 277                                                                                                 Gran Turismo 5 Prologue
## 278                                                                                           Assassin's Creed: Revelations
## 279                                                                                                                 FIFA 12
## 280                                                                                            Teenage Mutant Ninja Turtles
## 281                                                                                                       Street Fighter IV
## 282                                                                                                              Excitebike
## 283                                                                                                                 Frogger
## 284                                                                                                         Madden NFL 2003
## 285                                                                                                               Half-Life
## 286                                                                                     Super Mario World 2: Yoshi's Island
## 287                                                                                                          FIFA Soccer 07
## 288                                                                                                 Street Fighter II Turbo
## 289                                                                                  World of Warcraft: The Burning Crusade
## 290                                                                                                           Battlefield 1
## 291                                                                                                           God of War II
## 292                                                                                           World Soccer Winning Eleven 9
## 293                                                                                                      Fallout: New Vegas
## 294                                                                                                      Forza Motorsport 2
## 295                                                                                                          Carnival Games
## 296                                                                                                              Watch Dogs
## 297                                                                                                      Namco Museum Vol.3
## 298                                                                                                   Tekken Tag Tournament
## 299                                                                                                               Far Cry 4
## 300                                                                                                             Star Fox 64
## 301                                                                                                                    Golf
## 302                                                                                          Namco Museum: 50th Anniversary
## 303                                                                                                           Left 4 Dead 2
## 304                                                                                                The Witcher 3: Wild Hunt
## 305                                                                                                 Assassin's Creed: Unity
## 306                                                                                                   Batman: Arkham Knight
## 307                                                                                      The Legend of Zelda: Skyward Sword
## 308                                                                                                               Fallout 3
## 309                                                                                 Professor Layton and the Diabolical Box
## 310                                                                                                        Donkey Kong Land
## 311                                                                                                        EA Sports Active
## 312                                                                                                 Tony Hawk's Underground
## 313                                                                                               Monster Hunter 4 Ultimate
## 314                                                                                             The Elder Scrolls V: Skyrim
## 315                                                                                                                NBA 2K16
## 316                                                                                                                Tekken 5
## 317                                                                                                      Dragon Warrior III
## 318                                                                                                              MotorStorm
## 319                                                                                                       Nintendogs + cats
## 320                                                                             World Soccer Winning Eleven 8 International
## 321                                                                                                        Sports Champions
## 322                                                                                                      Namco Museum Vol.1
## 323                                                                                   The Legend of Zelda: Link's Awakening
## 324                                                                                                    Call of Duty: Ghosts
## 325                                                                           Flash Focus: Vision Training in Minutes a Day
## 326                                                                                               Tom Clancy's The Division
## 327                                                                                           Big Brain Academy: Wii Degree
## 328                                                                                            Resident Evil Director's Cut
## 329                                                                                    Mario & Luigi: Bowser's Inside Story
## 330                                                                             LEGO Indiana Jones: The Original Adventures
## 331                                                                                                     The Sims: Unleashed
## 332                                                                                           Ratchet & Clank: Size Matters
## 333                                                                                   Harry Potter and the Sorcerer's Stone
## 334                                                                          Mario & Sonic at the London 2012 Olympic Games
## 335                                                                                                Resident Evil 3: Nemesis
## 336                                                                                                       Super Paper Mario
## 337                                                                                               Spyro: Year of the Dragon
## 338                                                                                         Assassin's Creed IV: Black Flag
## 339                                                                                                        FIFA Soccer 2005
## 340                                                                                              Pok茅mon Trading Card Game
## 341                                                                                                       Friend Collection
## 342                                                                                                Tony Hawk's Pro Skater 4
## 343                                                                                            Star Wars Battlefront (2015)
## 344                                                                                                                  MySims
## 345                                                                                            Midnight Club 3: DUB Edition
## 346                                                                                                           Banjo-Kazooie
## 347                                                                                                  SOCOM: U.S. Navy SEALs
## 348                                                                                    Jak and Daxter: The Precursor Legacy
## 349                                                                                                            Pokemon Snap
## 350                                                                                               Pro Evolution Soccer 2008
## 351                                                                                                         Resident Evil 4
## 352                                                                                                 Guitar Hero: World Tour
## 353                                                                                                          FIFA Soccer 10
## 354                                                                                                  Star Wars: Battlefront
## 355                                                                                                  Doom II: Hell on Earth
## 356                                                                                                 The Simpsons: Road Rage
## 357                                                                                                         Luigi's Mansion
## 358                                                                                                           Battlefield 4
## 359                                                                                               Star Wars: Battlefront II
## 360                                                                                                         Just Dance 2014
## 361                                                                                     Cooking Mama 2: Dinner With Friends
## 362                                                                                                          WWF SmackDown!
## 363                                                                                              Croc: Legend of the Gobbos
## 364                                                                                  Grand Theft Auto: Liberty City Stories
## 365                                                                                                             The Getaway
## 366                                                                               Tomb Raider III: Adventures of Lara Croft
## 367                                                                                        James Bond 007: Agent Under Fire
## 368                                                                                          LEGO Star Wars: The Video Game
## 369                                                                                             Rugrats in Paris: The Movie
## 370                                                                                                          FIFA Soccer 11
## 371                                                                                                  Spyro 2: Ripto's Rage!
## 372                                                                                                             Left 4 Dead
## 373                                                                     Donkey Kong Country 3: Dixie Kong's Double Trouble!
## 374                                                                                                 Assassin's Creed: Unity
## 375                                                                                                                 Kung Fu
## 376                                                                                                         Resident Evil 5
## 377                                                                                           Assassin's Creed: Brotherhood
## 378                                                                                                        FIFA Soccer 2004
## 379                                                                                                           Battlefield 4
## 380                                                                                                   Batman: Arkham Asylum
## 381                                                                                                           Battlefield 4
## 382                                                                                              Battlefield: Bad Company 2
## 383                                                                               Mario & Sonic at the Olympic Winter Games
## 384                                                                                                    Guitar Hero: On Tour
## 385                                                                                                         Clubhouse Games
## 386                                                                                                        Monster Hunter 4
## 387                                                                                                             Borderlands
## 388                                                                                                                Tekken 4
## 389                                                                                                       Final Fantasy III
## 390                                                                                                      Grand Theft Auto 2
## 391                                                                                    Metal Gear Solid V: The Phantom Pain
## 392                                                                                                            Spider-Man 2
## 393                                                                                                                F-1 Race
## 394                                                                                                        FIFA Soccer 2003
## 395                                                                                                       LittleBigPlanet 2
## 396                                                                                                              Crash Bash
## 397                                                                                              Assassin's Creed Syndicate
## 398                                                                                              LEGO Batman: The Videogame
## 399                                                                                                                 Destiny
## 400                                                                                                            WWF War Zone
## 401                                                                                      The Legend of Zelda: Majora's Mask
## 402                                                                                                               Far Cry 3
## 403                                                                                              Rugrats: Search For Reptar
## 404                                                                       English Training: Have Fun Improving Your Skills!
## 405                                                                                               James Bond 007: Nightfire
## 406                                                                                                         Ratchet & Clank
## 407                                                                                                        Monster Hunter X
## 408                                                                              Star Wars Episode III: Revenge of the Sith
## 409                                                                                      The Legend of Zelda: Spirit Tracks
## 410                                                                                                               Max Payne
## 411                                                                                         Assassin's Creed IV: Black Flag
## 412                                                                           The Lord of the Rings: The Return of the King
## 413                                                                                               Yokai Watch 2 Ganso/Honke
## 414                                                                                          Gears of War: Ultimate Edition
## 415                                                                                               True Crime: Streets of LA
## 416                                                                                 Professor Layton and the Unwound Future
## 417                                                                                                      Gran Turismo (PSP)
## 418                                                                                                                 FIFA 16
## 419                                                                                                               Wii Music
## 420                                                                                                                  Tekken
## 421                                                                                                           Madden NFL 16
## 422                                                                                                          Gran Turismo 6
## 423                                                                                       Halo: The Master Chief Collection
## 424                                                                                                007: Tomorrow Never Dies
## 425                                                                                                       Super Mario Maker
## 426                                                                                        WWF SmackDown! 2: Know Your Role
## 427                                                                                                                Baseball
## 428                                                                                                         Killer Instinct
## 429                                                                                    Dragon Quest VI: Maboroshi no Daichi
## 430                                                                                           God of War: Chains of Olympus
## 431                                                                                                        Enter the Matrix
## 432                                                                                          Crisis Core: Final Fantasy VII
## 433                                                                                                           Dance Central
## 434                                                                                                              L.A. Noire
## 435                                                                                          Ace Combat 04: Shattered Skies
## 436                                                                                                         Animal Crossing
## 437                                                                                                          FIFA Soccer 08
## 438                                                                                       Club Penguin: Elite Penguin Force
## 439                                                                                                              Spider-Man
## 440                                                                                                           Mario Party 9
## 441                                                                                         Need for Speed III: Hot Pursuit
## 442                                                                                               Star Wars Episode I Racer
## 443                                                                                                              Sonic Rush
## 444                                                                                                       Dragon Warrior IV
## 445                                                                                                           Rhythm Heaven
## 446                                                                                                      Fallout: New Vegas
## 447                                                                                               Personal Trainer: Cooking
## 448                                                                                          The Elder Scrolls IV: Oblivion
## 449                                                                              The Legend of Zelda: A Link Between Worlds
## 450                                                                                                         Resident Evil 6
## 451                                                                                                           Mass Effect 2
## 452                                                                                                  Dragon Ball Z: Budokai
## 453                                                                                                         Madden NFL 2002
## 454                                                                                                  World Class Track Meet
## 455                                                                                                             Donkey Kong
## 456                                                                                                      The Sims: Vacation
## 457                                                                                              LEGO Batman: The Videogame
## 458                                                                                    Animal Crossing: Happy Home Designer
## 459                                                                                                              The Sims 4
## 460                                                                                                           Borderlands 2
## 461                                                                                              LEGO Batman: The Videogame
## 462                                                                                                           Kung Fu Panda
## 463                                                                                                           Mass Effect 3
## 464                                                                                                              Heavy Rain
## 465                                                                                                                  Rayman
## 466                                                                                                            Saints Row 2
## 467                                                                                              Tom Clancy's Splinter Cell
## 468                                                                                                Mike Tyson's Punch-Out!!
## 469                                                                                          WWE SmackDown! Shut Your Mouth
## 470                                                                                                                 FIFA 14
## 471                                                                                                              Killzone 2
## 472                                                                                                               Far Cry 3
## 473                                                                                                             Epic Mickey
## 474                                                                                                                NBA 2K13
## 475                                                                                      Dragon Ball Z: Budokai Tenkaichi 3
## 476                                                                                              wwe Smackdown vs. Raw 2006
## 477                                                                                                                Star Fox
## 478                                                                                                   The Sims: Livin Large
## 479                                                                             World Soccer Winning Eleven 6 International
## 480                                                                                                           Devil May Cry
## 481                                                                                             Star Wars: The Old Republic
## 482                                                                                          Middle-Earth: Shadow of Mordor
## 483                                                                                                            Sonic Heroes
## 484                                                                                               Hitman 2: Silent Assassin
## 485                                                                                                               Titanfall
## 486                                                                                              Battlefield: Bad Company 2
## 487                                                                                                            Wave Race 64
## 488                                                                                               SOCOM II: U.S. Navy SEALs
## 489                                                                                             WWE SmackDown! vs. RAW 2006
## 490                                                                                                      Pac-Man Collection
## 491                                                                                                       Street Fighter IV
## 492                                                                                                                inFAMOUS
## 493                                                                                                  Kirby Super Star Ultra
## 494                                                                                                    Call of Duty: Ghosts
## 495                                                                                                                 FIFA 15
## 496                                                                                     Super Mario World 2: Yoshi's Island
## 497                                                                                                             Mass Effect
## 498                                                                                              Sonic Mega Collection Plus
## 499                                                                             World Soccer Winning Eleven 7 International
## 500                                                                                                  Sega Superstars Tennis
## 501                                                                                                        Hot Shots Golf 3
## 502                                                                                                  Cooking Mama: Cook Off
## 503                                                                                               Call of Duty: Finest Hour
## 504                                                                                                 WarioWare: Smooth Moves
## 505                                                                                                           Syphon Filter
## 506                                                                                                          Imagine: Babyz
## 507                                                                                                       Colin McRae Rally
## 508                                                                                                           Madden NFL 13
## 509                                                                                        The Elder Scrolls III: Morrowind
## 510                                                                                         Assassin's Creed IV: Black Flag
## 511                                                                                            Command & Conquer: Red Alert
## 512                                                                                                                  F-Zero
## 513                                                                                                           Yoshi's Story
## 514                                                                                                           Mortal Kombat
## 515                                                                                                           Madden NFL 10
## 516                                                                                                  WWE SmackDown! vs. Raw
## 517                                                                                                                BioShock
## 518                                                                                                           Metroid Prime
## 519                                                                                           Assassin's Creed: Brotherhood
## 520                                                                                                            Finding Nemo
## 521                                                                                                         Zumba Fitness 2
## 522                                                                                                                    Myst
## 523                                                                                                          Medal of Honor
## 524                                                                                             Need for Speed: Most Wanted
## 525                                                                                               Imagine: Fashion Designer
## 526                                                                                      WWE SmackDown! Here Comes the Pain
## 527                                                                                                          Hot Shots Golf
## 528                                                                                                            A Bug's Life
## 529                                                                                            WWF SmackDown! Just Bring It
## 530                                                                                                    inFAMOUS: Second Son
## 531                                                                                      Dragon Quest V: Tenkuu no Hanayome
## 532                                                                                                   Mortal Kombat Trilogy
## 533                                                                                                      Monster Hunter Tri
## 534                                                                                                              NBA Street
## 535                                                                                                                  Jak II
## 536                                                                                         Ratchet & Clank: Going Commando
## 537                                                                                             Need for Speed: Hot Pursuit
## 538                                                                                           Skylanders: Spyro's Adventure
## 539                                                                                                           Battlefield 3
## 540                                                                                                         Mortal Kombat X
## 541                                                                                                                The Sims
## 542                                                                                                              Killzone 3
## 543                                                                                          Star Wars: The Force Unleashed
## 544                                                                                                               Minecraft
## 545                                                                                                       Yoshi's Island DS
## 546                                                                                                   Saints Row: The Third
## 547                                                                                                         Missile Command
## 548                                                                                                             Mario Paint
## 549                                                                                                                Tekken 6
## 550                                                                                                      Pok茅mon Stadium 2
## 551                                                                                                                 Metroid
## 552                                                                                              Sonic and the Secret Rings
## 553                                                                                                                 FIFA 16
## 554                                                                                 The Legend of Zelda: A Link to the Past
## 555                                                                                                      Onimusha: Warlords
## 556                                                                                                             Mario Party
## 557                                                                                                              L.A. Noire
## 558                                                                                                          Call of Duty 3
## 559                                                                                                           Madden NFL 12
## 560                                                                                 LEGO Star Wars II: The Original Trilogy
## 561                                                                                                   Killzone: Shadow Fall
## 562                                                                                                           Madden NFL 11
## 563                                                                                                     Burnout 3: Takedown
## 564                                                                                                  Yokai Watch 2 Shinuchi
## 565                                                                                                           Mortal Kombat
## 566                                                                                Mario vs. Donkey Kong: Mini-Land Mayhem!
## 567                                                                                   Professor Layton and the Last Specter
## 568                                                                                             Call Of Duty 2: Big Red One
## 569                                                                                                          Medal of Honor
## 570                                                                                                                   Fable
## 571                                                                                                 Guitar Hero: World Tour
## 572                                                                                                                 FIFA 17
## 573                                                                                                          Hannah Montana
## 574                                                                                              Tom Clancy's Splinter Cell
## 575                                                                                      Super Mario Bros.: The Lost Levels
## 576                                                                                                   Need for Speed: Shift
## 577                                                                                        Star Wars: Shadows of the Empire
## 578                                                                                                   Medal of Honor Heroes
## 579                                                                                                    Final Fantasy XIII-2
## 580                                                                                            Midnight Club: Street Racing
## 581                                                                                                                 Skate 3
## 582                                                                                                            ESPN NFL 2K5
## 583                                                                                                               Halo Wars
## 584                                                                                                                NBA 2K12
## 585                                                                                             Pac-Man: Adventures in Time
## 586                                                                                                          FIFA Soccer 10
## 587                                                                                                          Medal of Honor
## 588                                                                                 Harry Potter and the Chamber of Secrets
## 589                                                                                                         Streets of Rage
## 590                                                                                                   God of War Collection
## 591                                                                                                           NBA Live 2005
## 592                                                                                                  Mario Strikers Charged
## 593                                                                                                          FIFA Soccer 09
## 594                                                                                                             Style Savvy
## 595                                                                                              WWE SmackDown vs. RAW 2007
## 596                                                                                       LEGO Star Wars: The Complete Saga
## 597                                                                                        Ratchet & Clank: Up Your Arsenal
## 598                                                                                                           Madden NFL 08
## 599                                                                                                Monster Hunter Freedom 2
## 600                                                                            Ratchet & Clank Future: Tools of Destruction
## 601                                                                                  Super Mario All-Stars: Limited Edition
## 602                                                                                                Sonic Adventure 2 Battle
## 603                                                                                                       Dragon Warrior II
## 604                                                                               Ghostbusters: The Video Game (DS Version)
## 605                                                                                                           Madden NFL 13
## 606                                                                                                     Dragon Age: Origins
## 607                                                                                                      Pok茅mon Colosseum
## 608                                                                                                         LittleBigPlanet
## 609                                                                                                           Madden NFL 09
## 610                                                                                                          Space Invaders
## 611                                                                                                              Crazy Taxi
## 612                                                                                                             Art Academy
## 613                                                                                                                NBA 2K14
## 614                                                                                                            Perfect Dark
## 615                                                                                                       Skylanders Giants
## 616                                                                                                          Dragon Warrior
## 617                                                                                                             Deca Sports
## 618                                                                                          PES 2009: Pro Evolution Soccer
## 619                                                                                                           Mario Party 2
## 620                                                                                               Marvel: Ultimate Alliance
## 621                                           Rockstar Games Double Pack: Grand Theft Auto III & Grand Theft Auto Vice City
## 622                                                                                          Mortal Kombat: Deadly Alliance
## 623                                                                                                              Game Party
## 624                                                                                                              Bloodborne
## 625                                                                                        Tomb Raider: The Last Revelation
## 626                                                                                                           Mario Party 4
## 627                                                                                                                    Pure
## 628                                                                                                               Rock Band
## 629                                                                                                                NBA 2K13
## 630                                                                                                   Saints Row: The Third
## 631                                                                                                            Resistance 2
## 632                                                                                                                NBA 2K15
## 633                                                                                                         Final Fantasy V
## 634                                                                                                   Final Fantasy Tactics
## 635                                                                                              Midnight Club: Los Angeles
## 636                                                                                                         Twisted Metal 2
## 637                                                                                                   The Sims: Bustin' Out
## 638                                                                                               Riven: The Sequel to Myst
## 639                                                                                            LEGO Harry Potter: Years 1-4
## 640                                                                                                   Need for Speed (2015)
## 641                                                                                          Call of Duty: Infinite Warfare
## 642                                                                                                           Madden NFL 16
## 643                                                                                                              Ice Hockey
## 644                                                                                                         Sonic Adventure
## 645                                                                                       Tom Clancy's Rainbow Six: Vegas 2
## 646                                                                                                            uDraw Studio
## 647                                                                                                      Tomb Raider (2013)
## 648                                                                                     Need for Speed Carbon: Own the City
## 649                                                                                                Dragon Ball Z: Budokai 2
## 650                                                                                               pro evolution soccer 2011
## 651                                                                                                        ATV Offroad Fury
## 652                                                                                                             Dino Crisis
## 653                                                                                               Need for Speed: ProStreet
## 654                                                                                        Halo: Combat Evolved Anniversary
## 655                                                                                                             Tetris Plus
## 656                                                                                                           Pro Wrestling
## 657                                                                                                          Theme Hospital
## 658                                                                                Frogger's Adventures: Temple of the Frog
## 659                                                                                                                Monopoly
## 660                                                                                                                        
## 661                                                                                                             Guitar Hero
## 662                                                                                                           Madden NFL 11
## 663                                                                                                         WCW/nWo Revenge
## 664                                                                                     Yu-Gi-Oh! The Duelists of the Roses
## 665                                                                                                             Dead Island
## 666                                                                                                             Half-Life 2
## 667                                                                                                         The Incredibles
## 668                                                                                                           Madden NFL 08
## 669                                                                                               Tony Hawk's Underground 2
## 670                                                                                                           Zumba Fitness
## 671                                                                                                           Madden NFL 10
## 672                                                                                                    Kirby's Dream Land 2
## 673                                                                                              Midnight Club: Los Angeles
## 674                                                                                                     Donkey Kong Land II
## 675                                                                                                 Dragon Warrior Monsters
## 676                                                                                           Kinect: Disneyland Adventures
## 677                                                                                               WWE SmackDown vs Raw 2008
## 678                                                                                   The Legend of Zelda: Majora's Mask 3D
## 679                                                                             LEGO Indiana Jones: The Original Adventures
## 680                                                                                        Resident Evil - Code: Veronica X
## 681                                                                                                                NBA 2K16
## 682                                                                                               Kinect Sports: Season Two
## 683                                                                                                        My Fitness Coach
## 684                                                                                                            Mario Tennis
## 685                                                                                                        Grand Theft Auto
## 686                                                                                   James Bond 007: Everything or Nothing
## 687                                                                                             Need For Speed: High Stakes
## 688                                                                                                          Chrono Trigger
## 689                                                                                                            Guild Wars 2
## 690                                                                                                         Cool Boarders 3
## 691                                                                                               Paper Mario: Sticker Star
## 692                                                                                                      WarioWare Touched!
## 693                                                                                                  Batman: Arkham Origins
## 694                                                                                                          Tomb Raider II
## 695                                                                                                     Yokai Watch Busters
## 696                                                                                       LEGO Star Wars: The Complete Saga
## 697                                                                                            Need for Speed Underground 2
## 698                                                                                               Pro Evolution Soccer 2010
## 699                                                                                                             Mario Bros.
## 700                                                                                                          FIFA Soccer 09
## 701                                                                                            LEGO Harry Potter: Years 1-4
## 702                                                                                                              The Sims 3
## 703                                                                                        Pokemon Ranger: Shadows of Almia
## 704                                                                                           TOCA Touring Car Championship
## 705                                                                                                             Dead Island
## 706                                                                                          Kirby: Nightmare in Dream Land
## 707                                                                                                            Wario Land 4
## 708                                                                                     Sonic's Ultimate Genesis Collection
## 709                                                                                                         Far Cry: Primal
## 710                                                                                                           Battlefield 1
## 711                                                                                           Onimusha 2: Samurai's Destiny
## 712                                                                                                         Cool Boarders 2
## 713                                                                                     Paper Mario: The Thousand-Year Door
## 714                                                                                                           Madden NFL 12
## 715                                                                                                   God of War: Ascension
## 716                                                                                        Guitar Hero III: Legends of Rock
## 717                                                                                                           Sonic Advance
## 718                                                                                         Super Monkey Ball: Banana Blitz
## 719                                                                                                         Just Dance Kids
## 720                                                                                                          Call of Duty 3
## 721                                                                                                       New Super Luigi U
## 722                                                                                         Assassin's Creed IV: Black Flag
## 723                                                                                                    Spyro: Season of Ice
## 724                                                                                                 Dissidia: Final Fantasy
## 725                                                                                                           Madden NFL 25
## 726                                                                        Teenage Mutant Ninja Turtles II: The Arcade Game
## 727                                                                                               Dance Dance Revolution X2
## 728                                                                                                           Borderlands 2
## 729                                                                                     Prince of Persia: The Sands of Time
## 730                                                                                                      Monster Hunter Tri
## 731                                                                                                LEGO Marvel Super Heroes
## 732                                                                                The Legend of Zelda: Link's Awakening DX
## 733                                                                                                         Resident Evil 4
## 734                                                                                         Tom Clancy's Rainbow Six: Siege
## 735                                                                                          Star Wars: The Force Unleashed
## 736                                                                      Devil May Cry 3: Dante's Awakening Special Edition
## 737                                                                                                                 Frogger
## 738                                                                                                          Guitar Hero II
## 739                                                                                                      Forza Motorsport 5
## 740                                                                                                             Rock Band 2
## 741                                                                                               Pro Yakyuu Family Stadium
## 742                                                                                                            Wario Land 3
## 743                                                                                             Need for Speed: Hot Pursuit
## 744                                                                             LEGO Indiana Jones: The Original Adventures
## 745                                                                                                              BioShock 2
## 746                                                                                    High School Musical: Makin' the Cut!
## 747                                                                                  Star Wars: Knights of the Old Republic
## 748                                                                                                    Kirby's Pinball Land
## 749                                                                                                     Donkey Kong Country
## 750                                                                                                           Madden NFL 15
## 751                                                                                               Pro Evolution Soccer 2012
## 752                                                                                                              Saints Row
## 753                                                                                               Yu-Gi-Oh: Duel Monsters 4
## 754                                                                                                      ATV Offroad Fury 2
## 755                                                                                                                 FIFA 15
## 756                                                                                           Mario & Luigi: Superstar Saga
## 757                                                                                               Star Wars: Rogue Squadron
## 758                                                                                                                  Tennis
## 759                                                                                               Tom Clancy's The Division
## 760                                                                                                      Final Fantasy XIII
## 761                                                                                                   The Sims: House Party
## 762                                                                                                           Scribblenauts
## 763                                                                                                         Sonic Unleashed
## 764                                                                                                         Syphon Filter 2
## 765                                                                                                          Pokemon Ranger
## 766                                                                                                              Volleyball
## 767                                                                                                   Skylanders SWAP Force
## 768                                                                                                               Overwatch
## 769                                                                                                      Hitman: Absolution
## 770                                                                                                            SimCity 2000
## 771                                                                                                             R.C. Pro-Am
## 772                                                                              Super Mario RPG: Legend of the Seven Stars
## 773                                                                                                                 Mahjong
## 774                                                                                                            Demon Attack
## 775                                                                                          Call of Duty: Roads to Victory
## 776                                                                                          Dance Dance Revolution Extreme
## 777                                                                                           Final Fantasy Tactics Advance
## 778                                                                                     Your Shape featuring Jenny McCarthy
## 779                                                                                                   Project Gotham Racing
## 780                                                                                                                    Golf
## 781                                                                                                                NBA 2K12
## 782                                                                                                  Tony Hawk's Pro Skater
## 783                                                                                           Need for Speed: Hot Pursuit 2
## 784                                                                                          PES 2009: Pro Evolution Soccer
## 785                                                                                                      Dynasty Warriors 4
## 786                                                                                                                NBA 2K14
## 787                                                                                                            Parasite Eve
## 788                                                                                                               Tetris DS
## 789                                                                                 Project Gotham Racing (JP weekly sales)
## 790                                                                                        Scooby-Doo! Night of 100 Frights
## 791                                                                                                   Battlefield: Hardline
## 792                                                                                                           Mortal Kombat
## 793                                                                                                             Borderlands
## 794                                                                                      Devil May Cry 3: Dante's Awakening
## 795                                                                                                          Derby Stallion
## 796                                                                                                                NBA 2K11
## 797                                                                                                            Finding Nemo
## 798                                                                                                             Dying Light
## 799                                                                                                             Yokai Watch
## 800                                                                                                             Dead Rising
## 801                                                                                            World of Warcraft: Cataclysm
## 802                                                                                                           Tetris Worlds
## 803                                                                                                       Final Fantasy III
## 804                                                                                                          Sim Theme Park
## 805                                                                                                           Mario Party 5
## 806                                                                                                               Rock Band
## 807                                                                                                 Warcraft: Orcs & Humans
## 808                                                                                               Mario & Luigi: Dream Team
## 809                                                                                                                Portal 2
## 810                                                                                                        Mario Sports Mix
## 811                                                                                       Need for Speed: Most Wanted 5-1-0
## 812                                                                                             Spec Ops: Airborne Commando
## 813                                                                                                        The Sims 2: Pets
## 814                                                                                   Dance Dance Revolution: Hottest Party
## 815                                                                                                               DriveClub
## 816                                                                                      Yu-Gi-Oh! The Eternal Duelist Soul
## 817                                                                                                     UFC 2009 Undisputed
## 818                                                                                          Metal Gear Solid: Peace Walker
## 819                                                                                                       Kirby's Epic Yarn
## 820                                                                                                       Wipeout: The Game
## 821                                                                           Pokemon Mystery Dungeon: Red/Blue Rescue Team
## 822                                                                                                         The Incredibles
## 823                                                                                                  R4: Ridge Racer Type 4
## 824                                                                                          Kingdom Hearts: Birth by Sleep
## 825                                                                                  Tom Clancy's Splinter Cell: Conviction
## 826                                                                                                          SoulCalibur II
## 827                                                                                               Need for Speed: ProStreet
## 828                                                                                                   Sonic Mega Collection
## 829                                                                               Ghostbusters: The Video Game (DS Version)
## 830                                                                                                           Madden NFL 15
## 831                                                                                              Need For Speed: Undercover
## 832                                                                                             Toy Story 3: The Video Game
## 833                                                                                                                 NBA Jam
## 834                                                                                SOCOM: U.S. Navy SEALs: Combined Assault
## 835                                                               Peter Jackson's King Kong: The Official Game of the Movie
## 836                                                                                               Need for Speed: ProStreet
## 837                                                                                                     Donkey Kong Country
## 838                                                                                                         Dance Central 2
## 839                                                                                          PGR4 - Project Gotham Racing 4
## 840                                                                                          1080掳: TenEighty Snowboarding
## 841                                                                                                          Carnival Games
## 842                                                                                                           NBA Live 2004
## 843                                                                                                          Call of Duty 2
## 844                                                                                         Rayman Raving Rabbids: TV Party
## 845                                                                              Pok茅mon Mystery Dungeon: Blue Rescue Team
## 846                                                                                                              Dark Souls
## 847                                                                                                            Just Dance 3
## 848                                                                                                           Battlefield 4
## 849                                                                                                  Fire Emblem: Awakening
## 850                                                                                                 Need for Speed: The Run
## 851                                                                                                         Just Dance 2015
## 852                                                                                                 Dragon Age: Inquisition
## 853                                                                                                 Super Street Fighter II
## 854                                                                                                              Dead Space
## 855                                                                                           Mortal Kombat vs. DC Universe
## 856                                                                                                             TouchMaster
## 857                                                                                               Tenchu: Stealth Assassins
## 858                                                                                                                  Tennis
## 859                                                                                 Harry Potter and the Chamber of Secrets
## 860                                                                                               Kingdom Hearts 358/2 Days
## 861                                                                                                                 Skate 3
## 862                                                                                                                 SimCity
## 863                                                                                 Harry Potter and the Chamber of Secrets
## 864                                                                                                   Need for Speed Rivals
## 865                                                                                              Spyro: Enter the Dragonfly
## 866                                                                                                         Devil May Cry 2
## 867                                                                                             E.T.: The Extra Terrestrial
## 868                                                                                                Hot Shots Golf: Open Tee
## 869                                                                                                               Minecraft
## 870                                                                                                                  Soccer
## 871                                                                                                               Rad Racer
## 872                                                                                                           Forza Horizon
## 873                                                                                         Tom Clancy's Rainbow Six: Vegas
## 874                                                                                                        Crash Nitro Kart
## 875                                                                                                         Resident Evil 6
## 876                                                                                           Grand Theft Auto: San Andreas
## 877                                                                                                  Star Wars: Dark Forces
## 878                                                                                                       NBA Street Vol. 2
## 879                                                                                                        Def Jam Vendetta
## 880                                                                                                      Kirby Squeak Squad
## 881                                                                                                        Burnout Paradise
## 882                                                                                           Who wants to be a millionaire
## 883                                                                                                                Alleyway
## 884                                                                                          Scooby Doo and the Cyber Chase
## 885                                                                                                              The Sims 3
## 886                                                                                                          FIFA Soccer 09
## 887                                                                                                Dragon Ball Z: Budokai 3
## 888                                                                                              Call of Duty: World at War
## 889                                                                                                              Jet Moto 2
## 890                                                                                                Tom Clancy's Ghost Recon
## 891                                                                                                       BioShock Infinite
## 892                                                                                                           X-Men Legends
## 893                                                                                                        Mortal Kombat II
## 894                                                                                                        Virtua Fighter 2
## 895                                                                                           Mortal Kombat vs. DC Universe
## 896                                                                                                 Destiny: The Taken King
## 897                                                                                                               Tetris DX
## 898                                                                                     The Legend of Zelda: Oracle of Ages
## 899                                                                                                                 Destiny
## 900                                                                                                             Red Faction
## 901                                                                                                  The Sims: Makin' Magic
## 902                                                                                                Mario Party: Island Tour
## 903                                                                                                            MX Unleashed
## 904                                                                                                      PaRappa The Rapper
## 905                                                                                                 Guitar Hero: World Tour
## 906                                                                                                   Need for Speed: Shift
## 907                                                                                                           Mario Party 3
## 908                                                                                                              Diablo III
## 909                                                                                                       LittleBigPlanet 3
## 910                                                                               Star Wars Rogue Leader: Rogue Squadron II
## 911                                                                                                      Tomb Raider (2013)
## 912                                                                                                    Mario Super Sluggers
## 913                                                                                             Donkey Kong Country Returns
## 914                                                                                                                Monopoly
## 915                                                                                                           Madden NFL 09
## 916                                                                                                  Batman: Arkham Origins
## 917                                                                                                            Game Party 2
## 918                                                                                            Yu-Gi-Oh! Forbidden Memories
## 919                                                                                                Mortal Kombat: Deception
## 920                                                                                                        Hot Shots Golf 2
## 921                                                                     Medal of Honor: European Assault (All Region sales)
## 922                                                                                                                NBA 2K17
## 923                                                                                                        Toy Story Mania!
## 924                                                                                                               WCW Nitro
## 925                                                                                           High School Musical: Sing It!
## 926                                                                                                     Star Fox Adventures
## 927                                                                                                               FIFA 2000
## 928                                                                                                           Madden NFL 25
## 929                                                                                                      Dynasty Warriors 3
## 930                                                                                  The Legend of Zelda: Oracle of Seasons
## 931                                                                                 Ratchet & Clank Future: A Crack in Time
## 932                                                                                                           Madden NFL 06
## 933                                                                                                                 Shrek 2
## 934                                                                                                  Turok 2: Seeds of Evil
## 935                                                                                                   The Legend of Dragoon
## 936                                                                                                                SingStar
## 937                                                                                          Star Wars: The Force Unleashed
## 938                                                                                                           NBA Live 2002
## 939                                                                                                            Just Cause 3
## 940                                                                                                            Chrono Cross
## 941                                                                                                                   Jak 3
## 942                                                                                       Kingdom Hearts: Chain of Memories
## 943                                                                                                                 Pinball
## 944                                                                                                             Max Payne 3
## 945                                                                                         Gran Turismo Concept 2001 Tokyo
## 946                                                                                                LEGO Marvel Super Heroes
## 947                                                                                                        Phineas and Ferb
## 948                                                                                                        NCAA Football 06
## 949                                                                                                       Hey You, Pikachu!
## 950                                                                                                 Rayman Raving Rabbids 2
## 951                                                                            2 Games in 1: Sonic Advance & ChuChu Rocket!
## 952                                                                                                                Jet Moto
## 953                                                                                                    Kirby: Triple Deluxe
## 954                                                                                                          Secret of Mana
## 955                                                                                                    GoldenEye 007 (2010)
## 956                                                                                                Sonic Classic Collection
## 957                                                                                                              Air Combat
## 958                                                                                                              Diablo III
## 959                                                                                                              inFAMOUS 2
## 960                                                                                    World of Warcraft: Mists of Pandaria
## 961                                                                                                        Sonic & Knuckles
## 962                                                                                                            Namco Museum
## 963                                                                                                      The Sims: Hot Date
## 964                                                                                                           Demon's Souls
## 965                                                                                                          The Orange Box
## 966                                                                                         DDRMAX2: Dance Dance Revolution
## 967                                                                                                              Crazy Taxi
## 968                                                                                                        Virtua Fighter 4
## 969                                                                                                               Mafia III
## 970                                                                                                  Sly 2: Band of Thieves
## 971                                                                                                 Guitar Hero: World Tour
## 972                                                                                                         Sonic Advance 2
## 973                                                                                                           Madden NFL 07
## 974                                                                                                        NFL GameDay 2000
## 975                                                                                                                NBA 2K11
## 976                                                                                                      Forza Motorsport 6
## 977                                                                                                         The Evil Within
## 978                                                                                             Metroid Prime 3: Corruption
## 979                                                                                     The Legend of Zelda: The Wind Waker
## 980                                                                                                  Disney's The Lion King
## 981                                                                                Professor Layton and the Mask of Miracle
## 982                                                                                                        Midnight Club II
## 983                                                                                      SpongeBob SquarePants: SuperSponge
## 984                                                                                               The Getaway: Black Monday
## 985                                                                                                    50 Cent: Bulletproof
## 986                                                                                                        Final Fantasy II
## 987                                                                                            Kirby 64: The Crystal Shards
## 988                                                                                                         Dead or Alive 3
## 989                                                                                            Dragon Quest Monsters: Joker
## 990                                                                                      LEGO Star Wars III: The Clone Wars
## 991                                                                                           High School Musical: Sing It!
## 992                                                                                             Metroid II: Return of Samus
## 993                                                                                                            WWF Attitude
## 994                                                                                                     UFC 2009 Undisputed
## 995                                                                                         The SpongeBob SquarePants Movie
## 996                                                                                                              Golden Sun
## 997                                                                                                    Sonic the Hedgehog 3
## 998                                                                                                              Kid Icarus
## 999                                                                                                   Def Jam: Fight for NY
## 1000                                                                                               Tom Clancy's Ghost Recon
## 1001                                                                                                     State of Emergency
## 1002                                    2 Games in 1 Double Pack: The Incredibles / Finding Nemo: The Continuing Adventures
## 1003                                                                                             The Urbz: Sims in the City
## 1004                                                                                                 Star Wars: Starfighter
## 1005                                                                                                        Madden NFL 2000
## 1006                                                                                                 Star Wars: Battlefront
## 1007                                                                                                   Pro Evolution Soccer
## 1008                                                                                                          Madden NFL 17
## 1009                                                                                                           Just Cause 2
## 1010                                                                                                       Disney's Aladdin
## 1011                                                                                                      Kirby's Adventure
## 1012                                                                                                                  Yoshi
## 1013                                                                                               The Elder Scrolls Online
## 1014                                                                                                         FIFA Soccer 08
## 1015                                                                                                              Crackdown
## 1016                                                                                                            Wii Party U
## 1017                                                                                               Dance Dance Revolution X
## 1018                                                                          2 Games in 1: Disney Princess & The Lion King
## 1019                                                                                                         Kingdom Hearts
## 1020                                                                                Star Wars Episode I: The Phantom Menace
## 1021                                                                                Xenosaga Episode I: Der Wille zur Macht
## 1022                                                                                                             Watch Dogs
## 1023                                                                                                       Kinect Star Wars
## 1024                                                                                                         Dragon's Dogma
## 1025                                                                                                            Cruis'n USA
## 1026                                                                                                          Madden NFL 99
## 1027                                                                                                        The Order: 1886
## 1028                                                                                                             SSX Tricky
## 1029                                                                                                                  Knack
## 1030                                                                                                      Twisted Metal III
## 1031                                                                                  Harry Potter and the Sorcerer's Stone
## 1032                                                                                  Dragon Quest VI: Realms of Revelation
## 1033                                                                                    Crash Bandicoot: The Huge Adventure
## 1034                                                                                                     Hitman: Absolution
## 1035                                          Rockstar Games Double Pack: Grand Theft Auto III & Grand Theft Auto Vice City
## 1036                                                                                                               The Crew
## 1037                                                                                Call of Duty: World at War Final Fronts
## 1038                                                                                                               NBA 2K15
## 1039                                                                                                        Madden NFL 2005
## 1040                                                                                       Star Ocean: Till The End of Time
## 1041                                                                                         Call of Duty: Modern Warfare 3
## 1042                                                                                                             Dishonored
## 1043                                                                             Toy Story 2: Buzz Lightyear to the Rescue!
## 1044                                                                                                 The Beatles: Rock Band
## 1045                                                                                           Ace Combat 5: The Unsung War
## 1046                                                                                             Need for Speed Underground
## 1047             Kanshuu Nippon Joushikiryoku Kentei Kyoukai: Imasara Hito ni wa Kikenai Otona no Joushikiryoku Training DS
## 1048                                                                                                          Tetris Worlds
## 1049                                                                                                       Imagine: Teacher
## 1050                                                                                              Call of Duty: Black Ops 3
## 1051                                                                                                        Deal or No Deal
## 1052                                                                                                         FIFA Soccer 10
## 1053                                                                                                               Portal 2
## 1054                                                                                                        Super Puyo Puyo
## 1055                                                                                                       NCAA Football 07
## 1056                                                                                  The Sims 3: Late Night Expansion Pack
## 1057                                                                                                           No Man's Sky
## 1058                                                                                             Ben 10: Protector of Earth
## 1059                                                                                          Cabela's Big Game Hunter 2010
## 1060                                                                                               SOCOM 3: U.S. Navy SEALs
## 1061                                                                                                      BioShock Infinite
## 1062                                                                                                     Jampack Winter '99
## 1063                                                                                              Call of Duty: Black Ops 3
## 1064                                                                                                WCW vs. nWo: World Tour
## 1065                                                                                                        WCW/NWO Thunder
## 1066                                                                                  Harry Potter and the Sorcerer's Stone
## 1067                                                                                      Dragon Ball Z: The Legacy of Goku
## 1068                                                                                            Cooking Mama 3: Shop & Chop
## 1069                                                                                                        Resident Evil 4
## 1070                                                                                                 Personal Trainer: Math
## 1071                                                                                                           Game Party 3
## 1072                                                                                             Need For Speed: Undercover
## 1073                                                            World Championship Poker: Featuring Howard Lederer - All In
## 1074                                                                                                         NFL GameDay 98
## 1075                                                                                                           Sonic Colors
## 1076                                                                                                           Saints Row 2
## 1077                                                                                                         Yoshi's Cookie
## 1078                                                                                                            Time Crisis
## 1079                                                                                             Sid Meier's Civilization V
## 1080                                                                                                      Fire Emblem Fates
## 1081                                                                                                    The Sims: Superstar
## 1082                                                                                                         Metroid Fusion
## 1083                                                                                                                 We Ski
## 1084                                                                               Star Wars Battlefront: Renegade Squadron
## 1085                                                                                                                  SSX 3
## 1086                                                                                                        Madden NFL 2001
## 1087                                                                                              Star Wars: Battlefront II
## 1088                                                                                                     Disney's DuckTales
## 1089                                                                                               Tony Hawk's Pro Skater 3
## 1090                                                                                                         Monsters, Inc.
## 1091                                                                                           PGR: Project Gotham Racing 2
## 1092                                                                                                    Dragon Age: Origins
## 1093                                                                                                             Spy Hunter
## 1094                                                                                                     NCAA Football 2004
## 1095                                                                                                    Fight Night Round 3
## 1096                                                                                       StarCraft II: Heart of the Swarm
## 1097                                                                        SpongeBob SquarePants: Battle for Bikini Bottom
## 1098                                                                                                             Until Dawn
## 1099                                                                                                       Big Beach Sports
## 1100                                                                           Street Fighter II': Special Champion Edition
## 1101                                                                                                                    SSX
## 1102                                                                                    Shaun White Snowboarding: Road Trip
## 1103                                                                                                            NBA Ballers
## 1104                                                                                                          Saints Row IV
## 1105                                                                                                          NBA Live 2003
## 1106                                                                                         LEGO Batman 2: DC Super Heroes
## 1107                                                                                       Dragon Ball Z: Budokai Tenkaichi
## 1108                                                                                                         Dark Souls III
## 1109                                                                                                            Ms. Pac-Man
## 1110                                                                                            Kirby's Return to Dreamland
## 1111                                                                                                          Mario Party 6
## 1112                                                                                                          Super Scope 6
## 1113                                                                             Star Wars The Clone Wars: Lightsaber Duels
## 1114                                                                                                  Need for Speed Carbon
## 1115                                                                                                         Heavenly Sword
## 1116                                                                                     Dragon Quest V: Tenkuu no Hanayome
## 1117                                                                                                                 MySims
## 1118                                                                                             Kirby & the Amazing Mirror
## 1119                                                                                                            Army of Two
## 1120                                                                                                                Dig Dug
## 1121                                                                                               Tom Clancy's Rainbow Six
## 1122                                                                                                      Ghosts 'n Goblins
## 1123                                                                                              Tiger Woods PGA Tour 2003
## 1124                                                                                         NBA Live 06 (All region sales)
## 1125                                                                                       Prince of Persia: Warrior Within
## 1126                                                                                                              Far Cry 4
## 1127                                                                                                           ESPN NFL 2K5
## 1128                                                                                                      Beyond: Two Souls
## 1129                                                                                                                 Pikmin
## 1130                                                                                              Tiger Woods PGA Tour 2004
## 1131                                                                                                               NBA 2K15
## 1132                                                                                                Call of Duty: Black Ops
## 1133                                                                                                             Ape Escape
## 1134                                                                                                     NCAA Football 2005
## 1135                                                                                                            Max Payne 3
## 1136                                                                                                            Viva Pinata
## 1137                                                                  Tony Hawk's American Wasteland (Old all region sales)
## 1138                                                                                                            Kinectimals
## 1139                                                                                                         Kirby Air Ride
## 1140                                                                                               LEGO Marvel Super Heroes
## 1141                                                                                                             Sled Storm
## 1142                                                                                                                Destiny
## 1143                                                                                                              Rock Band
## 1144                                                                                Dragon Quest IV: Chapters of the Chosen
## 1145                                                                                                           NFL Street 2
## 1146                                                                                                               Baseball
## 1147                                                                                                Yu-Gi-Oh! Duel Monsters
## 1148                                                                                                   Super Mario Strikers
## 1149                                                                                                   Buzz! The Music Quiz
## 1150                                                                                                                   Rage
## 1151                                                                                                     Mario Hoops 3 on 3
## 1152                                                                                      SpongeBob's Atlantis SquarePantis
## 1153                                                                                                            Dollar Dash
## 1154                                                                                                   F-1 World Grand Prix
## 1155                                                                                                             River Raid
## 1156                                                                                                           Just Cause 2
## 1157                                                                                                            Silent Hill
## 1158                                                                                                           Sonic Heroes
## 1159                                                                                                        Disney Infinity
## 1160                                                                                                           ESPN NBA 2K5
## 1161                                                                                                                 Diablo
## 1162                                                                                                              Far Cry 2
## 1163                                                                                 The Legend of Zelda: Twilight Princess
## 1164                                                                                                              Soul Edge
## 1165                                                                                                            Mario Bros.
## 1166                                                                                              Pro Evolution Soccer 2008
## 1167                                                                                                            NASCAR 2000
## 1168                                                                                              Pokemon Battle Revolution
## 1169                                                                                 Kingdom Hearts 3D: Dream Drop Distance
## 1170                                                                                Dance Dance Revolution: Hottest Party 2
## 1171                                                                                                         SoulCalibur IV
## 1172                                                                                                      Jampack Summer 2K
## 1173                                                                                                      Sonic Generations
## 1174                                                                                               Spyro 2: Season of Flame
## 1175                                                                                                         Mario Party 10
## 1176                                                                                                        Devil May Cry 4
## 1177                                                                                                          Dead Rising 3
## 1178                                                                                              Pro Evolution Soccer 2010
## 1179                                                                                                     NCAA Football 2002
## 1180                                                                                                 Gears of War: Judgment
## 1181                                                                                                             Watch Dogs
## 1182                                                                                           Guitar Hero: On Tour Decades
## 1183                                                                                                                FIFA 16
## 1184                                                                                                          Madden NFL 15
## 1185                                                                                                 Conflict: Desert Storm
## 1186                                                                                                          Mario Party 7
## 1187                                                                             Dragon Quest V: Hand of the Heavenly Bride
## 1188                                                                                     High School Musical 3: Senior Year
## 1189                                                                                                         Smuggler's Run
## 1190                                                                                                    Fight Night Round 3
## 1191                                                                                            Need for Speed: Most Wanted
## 1192                                                                                              Carnival Games: Mini Golf
## 1193                                                                                                   Donkey Kong Classics
## 1194                                                                                              Hannah Montana: Music Jam
## 1195                                                                                                          Twisted Metal
## 1196                                                                                                            Final Fight
## 1197                                                                              Pokemon Mystery Dungeon: Explorers of Sky
## 1198                                                                                                Dragon Quest Monsters 2
## 1199                                                                                       Pokemon Pinball: Ruby & Sapphire
## 1200                                                                                                         MySims Kingdom
## 1201                                                                          LEGO Pirates of the Caribbean: The Video Game
## 1202                                                                                                               Stuntman
## 1203                                                                                             Tom Clancy's Rainbow Six 3
## 1204                                                                                           LEGO Harry Potter: Years 1-4
## 1205                                                                                           007: The World is not Enough
## 1206                                                                                           Spider-Man 2: Enter: Electro
## 1207                                                                                                          Guitar Hero 5
## 1208                                                                                        Command & Conquer: Tiberian Sun
## 1209                                                                                             Wolfenstein: The New Order
## 1210                                                                                                               Mafia II
## 1211                                                                                           Moshi Monsters: Moshling Zoo
## 1212                                                                                                             BioShock 2
## 1213                                                                                                             Dark Cloud
## 1214                                                                                        Warcraft III: The Frozen Throne
## 1215                                                                                         Active Life: Outdoor Challenge
## 1216                                                                           Tom Clancy's Ghost Recon Advanced Warfighter
## 1217                                                                                                 Ratchet & Clank (2016)
## 1218                                                                                                      MVP Baseball 2005
## 1219                                                                                                       Die Hard Trilogy
## 1220                                                                                                Uncharted: Golden Abyss
## 1221                                                                                                            Go Vacation
## 1222                                                                                              Pro Evolution Soccer 2013
## 1223                                                                                                        Mortal Kombat 3
## 1224                                                                                                         NFL GameDay 99
## 1225                                                                                                             Dishonored
## 1226                                                                                             Mario Golf: Toadstool Tour
## 1227                                                                                           Tiger Woods 99 PGA Tour Golf
## 1228                                                                                             Call of Duty: Black Ops II
## 1229                                                                                 Resident Evil: The Umbrella Chronicles
## 1230                                                                                                         Knockout Kings
## 1231                                                                                             The Simpsons Skateboarding
## 1232                                                                                   Donkey Kong Country: Tropical Freeze
## 1233                                                                                                              NASCAR 98
## 1234                                                                                                                Xevious
## 1235                                                                                                                F1 Race
## 1236                                                                                                              NASCAR 99
## 1237                                                                                      Final Fantasy XIV: A Realm Reborn
## 1238                                                                                                          NBA Live 2000
## 1239                                                                                                    Fight Night Round 4
## 1240                                                                                                    Super Monkey Ball 2
## 1241                                                                                                        Pac-Man World 2
## 1242                                                                                            Disney Fairies: Tinker Bell
## 1243                                                                                                         MySims Kingdom
## 1244                                                                                                           Dead Space 2
## 1245                                                                                                       Puzzle & Dragons
## 1246                                                                           Call of Duty: Modern Warfare: Reflex Edition
## 1247                                                                                                             Mega Man 2
## 1248                                                                                                     Simpsons Wrestling
## 1249                                                                                                            NBA Live 98
## 1250                                                                                                      The Simpsons Game
## 1251                                                                                                               Monopoly
## 1252                                                                                                      The Simpsons Game
## 1253                                                                                                  Football Manager 2012
## 1254                                                                                   Ni no Kuni: Wrath of the White Witch
## 1255                                                                                                         SoulCalibur II
## 1256                                                                                                         Call of Duty 3
## 1257                                                                                                Tokyo Xtreme Racer Zero
## 1258                                                                                                              NFL Blitz
## 1259                                                                                                         Red Faction II
## 1260                                                                                                        Madden NFL 2001
## 1261                                                                  Ninja Hattori Kun: Ninja wa Shuugyou Degogiru no Maki
## 1262                                                                                                           WWF No Mercy
## 1263                                                                                                            Ice Climber
## 1264                                                                                                               Sonic CD
## 1265                                                                                      Star Wars: The Force Unleashed II
## 1266                                                                                                          Pac-Man World
## 1267                                                                                                            Rock Band 2
## 1268                                                                                      Final Fantasy: Crystal Chronicles
## 1269                                                                                              Medal of Honor: Frontline
## 1270                                                                                                          Madden NFL 09
## 1271                                                                                                          Dead Rising 2
## 1272                                                                                                            Banjo-Tooie
## 1273                                                                                                     Buzz! The BIG Quiz
## 1274                                                                                                               Mafia II
## 1275                                                                                                  Batman: Arkham Knight
## 1276                                                                                                            Doom (2016)
## 1277                                                                                   Dirge of Cerberus: Final Fantasy VII
## 1278                                                                                                  WWF WrestleMania 2000
## 1279                                                                                                          Wario Land II
## 1280                                                                                                     Nintendo World Cup
## 1281                                                                                                         Sonic Rivals 2
## 1282                                                                                                Bratz: Forever Diamondz
## 1283                                                                                                           Resistance 3
## 1284                                                                           Drawn To Life: SpongeBob SquarePants Edition
## 1285                                                                                               Disney Sing It: Pop Hits
## 1286                                                                                                 007: Quantum of Solace
## 1287                                                                                              Major League Baseball 2K5
## 1288                                                                                                       Fight Night 2004
## 1289                                                                                     LEGO Star Wars III: The Clone Wars
## 1290                                                                           Tom Clancy's Splinter Cell: Pandora Tomorrow
## 1291                                                                                                   LEGO City Undercover
## 1292                                                                                                   Imagine: Master Chef
## 1293                                                                                                        Disney Princess
## 1294                                                                                                             Mario Golf
## 1295                                                                                   Call of Duty Black Ops: Declassified
## 1296                                                                               Tom Clancy's Ghost Recon: Future Soldier
## 1297                                                                                                    Fight Night Round 3
## 1298                                                                                                              Xenogears
## 1299                                                                                        The SpongeBob SquarePants Movie
## 1300                                                                                                    Super Scribblenauts
## 1301                                                                                                Midway Arcade Treasures
## 1302                                                                                                         Triple Play 99
## 1303                                                                                     Dragon Quest VII: Warriors of Eden
## 1304                                                                                                      Super Monkey Ball
## 1305                                                                                                         SoulCalibur IV
## 1306                                                                                                            Donkey Kong
## 1307                                                                                                        Mortal Kombat 4
## 1308                                                                                   New Play Control! Mario Power Tennis
## 1309                                                                                               Mario Superstar Baseball
## 1310                                                                                                                 Wall-E
## 1311                                                                                                       WCW vs the World
## 1312                                                                                               Battlefield: Bad Company
## 1313                                                                                                              Homefront
## 1314                                                                                                Onimusha 3: Demon Siege
## 1315                                                                                                          Madden NFL 15
## 1316                                                                                                      Red Dead Revolver
## 1317                                                                                                Resident Evil: Outbreak
## 1318                                                                                                             Tamagotchi
## 1319                                                                                                     4 Nin uchi Mahjong
## 1320                                                                                                          Dragon Ball Z
## 1321                                                                                          Game de Hakken!! Tamagotchi 2
## 1322                                                                                                        Namco Museum 64
## 1323                                                                                                          Mass Effect 2
## 1324                                                                                                  LEGO Battles: Ninjago
## 1325                                                                 Tony Hawk's American Wasteland (Weekly american sales)
## 1326                                                                                                               NBA 2K14
## 1327                                                                                     The House of the Dead 2 & 3 Return
## 1328                                                                                                           SingStar Pop
## 1329                                                                                                       Kirby Super Star
## 1330                                                                                          Sonic & Sega All-Stars Racing
## 1331                                                                                                        Disney Infinity
## 1332                                                                                                          My Word Coach
## 1333                                                                                              Tiger Woods PGA Tour 2005
## 1334                                                                                                     NCAA Football 2003
## 1335                                                                                      Star Wars: The Force Unleashed II
## 1336                                                                                            Frogger 2: Swampy's Revenge
## 1337                                                                                              WWE SmackDown vs Raw 2008
## 1338                                                                                                        Kinect Joy Ride
## 1339                                                                                                           Smarty Pants
## 1340                                                                            SNK vs. Capcom: The Match of the Millennium
## 1341                                                                                                     Disney's DuckTales
## 1342                                                                                        Disney Princess: Magical Jewels
## 1343                                                                                  Classic NES Series: Super Mario Bros.
## 1344                                                                                                       Triple Play 2000
## 1345                                                                                                              Anno 2070
## 1346                                                                                               Hasbro Family Game Night
## 1347                                                                                                           Sonic Rivals
## 1348                                                                                                               BioShock
## 1349                                                                                                          Mass Effect 3
## 1350                                                                                               Cabela's Big Game Hunter
## 1351                                                                                    NBA Live 06 (Weekly american sales)
## 1352                                                                                                         SimCity (2013)
## 1353                                                                                    The Legend of Zelda: The Minish Cap
## 1354                                                                                                             NFL Street
## 1355                                                                                                          Super Metroid
## 1356                                                                                          Pro Yakyuu Family Stadium '87
## 1357                                                                                                           Dead Space 2
## 1358                                                                                       Tiger Woods PGA Tour 09 All-Play
## 1359                                                                                         Metal Gear Rising: Revengeance
## 1360                                                                                                 Resident Evil (Remake)
## 1361                                                                                                  Rayman Raving Rabbids
## 1362                                                                                         Dragon Quest Monsters: Joker 2
## 1363                                                                                                    UFC Undisputed 2010
## 1364                                                                                         LEGO Star Wars: The Video Game
## 1365                                                                                             Medal of Honor: Warfighter
## 1366                                                                                                 Disney's The Lion King
## 1367                                                                                    Sonic's Ultimate Genesis Collection
## 1368                                                                                                      Hello Kitty Party
## 1369                                                                                                             The Sims 3
## 1370                                                                                                    Knockout Kings 2000
## 1371                                                                                                Gran Turismo 4 Prologue
## 1372                                                                                                             Diablo III
## 1373                                                                                                   Twisted Metal: Black
## 1374                                                                                         NASCAR 2005: Chase for the Cup
## 1375                                                                                                    Fight Night Round 4
## 1376                                                                                                  Spider-Man: The Movie
## 1377                                                                                LEGO Star Wars II: The Original Trilogy
## 1378                                                                                                             Dead Space
## 1379                                                                                             Need For Speed: Undercover
## 1380                                                                                                                2Xtreme
## 1381                                                                          LEGO Indiana Jones 2: The Adventure Continues
## 1382                                                                                                            Ridge Racer
## 1383                                                                                                        Sonic Advance 3
## 1384                                                                                                      Final Fantasy III
## 1385                                                                                                     Tomb Raider (2013)
## 1386                                                                                                    Colin McRae Rally 3
## 1387                                                                                                        Forza Horizon 2
## 1388                                                                                                        Madden NFL 2002
## 1389                                                                                                       Inazuma Eleven 2
## 1390                                                                                                                NBA Jam
## 1391                                                                Teenage Mutant Ninja Turtles III: The Manhattan Project
## 1392                                                                                                     Dynasty Warriors 5
## 1393                                                                                   Hannah Montana: Spotlight World Tour
## 1394                                                                                               Injustice: Gods Among Us
## 1395                                                                                                              Far Cry 2
## 1396                                                                                                     Yoshi's New Island
## 1397                                                                                         LEGO Batman 2: DC Super Heroes
## 1398                                                                                              True Crime: Streets of LA
## 1399                                                                                            Toy Story 3: The Video Game
## 1400                                                                                          Bravely Default: Flying Fairy
## 1401                                                                                                      Ryse: Son of Rome
## 1402                                                                                                        Mortal Kombat X
## 1403                                                                                                            Paper Mario
## 1404                                                                                                Rise of the Tomb Raider
## 1405                                                                                               Duke Nukem: Time to Kill
## 1406                                                                                                      Sonic Generations
## 1407                                                                                             Dave Mirra Freestyle BMX 2
## 1408                                                                                               Bakugan: Battle Brawlers
## 1409                                                                            LEGO Indiana Jones: The Original Adventures
## 1410                                                                                              Deus Ex: Human Revolution
## 1411                                                            A Collection of Activision Classic Games for the Atari 2600
## 1412                                                                                      Final Fantasy XII: Revenant Wings
## 1413                                                                                                Call of Duty: Black Ops
## 1414                                                                                              Deus Ex: Human Revolution
## 1415                                                               Star Wars Knights of the Old Republic II: The Sith Lords
## 1416                                                                                                Pocket Monsters Stadium
## 1417                                                                                                             The Sims 2
## 1418                                                                                                          Dead Rising 2
## 1419                                                                                                          Ridge Racer 7
## 1420                                                                                             Tom Clancy's Ghost Recon 2
## 1421                                                                                                Need for Speed: The Run
## 1422                                                                                           Crash Bandicoot 2: N-Tranced
## 1423                                                                                                              Titanfall
## 1424                                                                                                          SingStar Abba
## 1425                                                                                                                Gradius
## 1426                                                                                Dragon Quest III: Soshite Densetsu e...
## 1427                                                                                                              Centipede
## 1428                                                                                                         Dead to Rights
## 1429                                                                                                                WWE '13
## 1430                                                                                         Dance Dance Revolution (Japan)
## 1431                                                                                             Hasbro Family Game Night 2
## 1432                                                                                                          Madden NFL 98
## 1433                                                                                                         Gardening Mama
## 1434                                                                                                       Burnout Paradise
## 1435                                                                                         Middle-Earth: Shadow of Mordor
## 1436                                                                                               MotorStorm: Pacific Rift
## 1437                                                                                                       Samurai Warriors
## 1438                                                                                                          Battlefield 4
## 1439                                                                                                The Simpsons: Hit & Run
## 1440                                                                                                         Gears of War 4
## 1441                                                                                                          SaGa Frontier
## 1442                                                                                                         SingStar Party
## 1443                                                                                                         FIFA Soccer 08
## 1444                                                                                                         FIFA Soccer 09
## 1445                                                                                     Disney Princess: Enchanted Journey
## 1446                                                                                                         FIFA Soccer 08
## 1447                                                                                                             Test Drive
## 1448                                                                                                        Devil May Cry 4
## 1449                                                                                      Tom Clancy's Rainbow Six: Vegas 2
## 1450                                                                                                       Metroid: Other M
## 1451                                                                                                               Crysis 2
## 1452                                                                                                         Chrono Trigger
## 1453                                                                                Marvel vs. Capcom 3: Fate of Two Worlds
## 1454                                                                                                        Mortal Kombat 3
## 1455                                                                                                                 Doom 3
## 1456                                                                                        Tom Clancy's Rainbow Six: Siege
## 1457                                                                                                                F1 2010
## 1458                                                                                                 Monster Hunter Freedom
## 1459                                                                                                Donkey Kong Jungle Beat
## 1460                                                                                                  Need for Speed Carbon
## 1461                                                                                         Lost Planet: Extreme Condition
## 1462                                                                                         Command & Conquer: Red Alert 2
## 1463                                                                                                               NBA 2K15
## 1464                                                                                     Max Payne 2: The Fall of Max Payne
## 1465                                                                                               Battlefield: Bad Company
## 1466                                                                                                      MVP Baseball 2004
## 1467                                                                                                          Yokai Watch 3
## 1468                                                               Ratchet & Clank: Up Your Arsenal (Weekly american sales)
## 1469                                                                                                              Alan Wake
## 1470                                                                                                  Spider-Man: The Movie
## 1471                                                                                                           WWF War Zone
## 1472                                                                                                 Tony Hawk's Pro Skater
## 1473                                                                                                  The Sims: Bustin' Out
## 1474                                                                                                       Triple Play 2001
## 1475                                                                                                Metroid Prime 2: Echoes
## 1476                                                                                            The Elder Scrolls V: Skyrim
## 1477                                                                                                               Corvette
## 1478                                                                                              WWE SmackDown vs Raw 2008
## 1479                                                                                                  Skylanders SWAP Force
## 1480                                                                                       Grand Theft Auto: Chinatown Wars
## 1481                                                                                                    UFC Undisputed 2010
## 1482                                                                              World of Warcraft: Wrath of the Lich King
## 1483                                                                                                               Gyromite
## 1484                                                                                                   TOCA 2: Touring Cars
## 1485                                                                                                                NFL 2K3
## 1486                                                                                       Assassin's Creed III: Liberation
## 1487                                                                                                         Fighting Force
## 1488                                                                                            Petz Wild Animals: Dolphinz
## 1489                                                                         Mega Man Battle Network 4: Red Sun / Blue Moon
## 1490                                                                                            Your Shape: Fitness Evolved
## 1491                                                                                      Need for Speed Underground Rivals
## 1492                                                                                                          Madden NFL 97
## 1493                                                                            The ICO & Shadow of the Colossus Collection
## 1494                                                                                          TNN Motor Sports Hardcore 4x4
## 1495                                                                                               MAG: Massive Action Game
## 1496                                                                                                     IHRA Drag Racing 2
## 1497                                                                                                                   Rage
## 1498                                                                                           LEGO Harry Potter: Years 1-4
## 1499                                                                                                             Madagascar
## 1500                                                                                               The Witcher 3: Wild Hunt
## 1501                                                                                                    Rugrats Studio Tour
## 1502                                                                                               Pitfall II: Lost Caverns
## 1503                                                                                                       Turok: Evolution
## 1504                                                                                                            [Prototype]
## 1505                                                                                                    Burnout 3: Takedown
## 1506                                                                                                 The Beatles: Rock Band
## 1507                                                                                                              Adventure
## 1508                                                                                             Yu-Gi-Oh! The Sacred Cards
## 1509                                                                                                            NBA Live 07
## 1510                                                                                                   Yoshi's Woolly World
## 1511                                                                                                      Skylanders Giants
## 1512                                                                                                          SingStar '80s
## 1513                                                                                                       Romancing SaGa 3
## 1514                                                                                                           Test Drive 5
## 1515                                                                                                               Tekken 6
## 1516                                                                                             Assassin's Creed Syndicate
## 1517                                                                                                          Digimon World
## 1518                                                                                                              Far Cry 4
## 1519                                                                                         Pokemon Ranger: Guardian Signs
## 1520                                                                                             LEGO Batman: The Videogame
## 1521                                                                         Mega Man Battle Network 3 Blue / White Version
## 1522                                                                                                     Resident Evil Zero
## 1523                                                                              High School Musical 3: Senior Year DANCE!
## 1524                                                                                                               Crysis 2
## 1525                                                                 Pirates of the Caribbean: The Curse of the Black Pearl
## 1526                                                                                        Mario & Luigi: Partners in Time
## 1527                                                                                                        Namco Museum DS
## 1528                                                                                                        Deal or No Deal
## 1529                                                                                                           Transformers
## 1530                                                                                                            Dying Light
## 1531                                                                                                              Fallout 4
## 1532                                                                                                           Sonic Colors
## 1533                                                                                                Assassin's Creed: Rogue
## 1534                                                                                                          EA Playground
## 1535                                                                    Midnight Club 3: DUB Edition (America weekly sales)
## 1536                                                                                             Gold's Gym: Cardio Workout
## 1537                                                                                               The Elder Scrolls Online
## 1538                                                                                                   Champions of Norrath
## 1539                                                                                             LEGO Batman: The Videogame
## 1540                                                                                                                Yakuman
## 1541                                                                                                            Army Men 3D
## 1542                                                                                              Imagine: Wedding Designer
## 1543                                                                                                        Twisted Metal 4
## 1544                                                                                                                Manhunt
## 1545                                                                                                  Need for Speed Carbon
## 1546                                                                                                          Silent Hill 2
## 1547                                                                                     Castlevania: Symphony of the Night
## 1548                                                                                                 Guitar Hero: Aerosmith
## 1549                                                                                               The LEGO Movie Videogame
## 1550                                                                                                  The Sims 2: Nightlife
## 1551                                                                                                          Dark Souls II
## 1552                                                                                                   Kid Icarus: Uprising
## 1553                                                                             Pokemon Mystery Dungeon: Gates to Infinity
## 1554                                                                                             LEGO Batman: The Videogame
## 1555                                                                                                              Road Rash
## 1556                                                                                                               Atlantis
## 1557                                                                                                                NBA 2K9
## 1558                                                                                                Tony Hawk's Underground
## 1559                                                                                                          Hogan's Alley
## 1560                                                                                      Metal Gear Solid V: Ground Zeroes
## 1561                                                                                        Mystery Case Files: MillionHeir
## 1562                                                                                                .hack//Infection Part 1
## 1563                                                                               Jillian Michaels' Fitness Ultimatum 2009
## 1564                                                                                                    Valkyria Chronicles
## 1565                                                                                                                WWE '12
## 1566                                                                                     Sonic Adventure DX: Director's Cut
## 1567                                                                                                  Jet Li: Rise to Honor
## 1568                                                                                                 Battle Arena Toshinden
## 1569                                                                                                                WWE '13
## 1570                                                                                      Final Fantasy X / X-2 HD Remaster
## 1571                                                                                                  Need for Speed Rivals
## 1572                                                                                                     EA Sports Active 2
## 1573                                                                                   Rockstar Games presents Table Tennis
## 1574                                                                                                             Devil Dice
## 1575                                                                                                  Football Manager 2011
## 1576                                                                                                     Brian Lara Cricket
## 1577                                                                                             Championship Manager 03/04
## 1578                                                                                                       Wheel of Fortune
## 1579                                                                                     Tamagotchi Connection: Corner Shop
## 1580                                                                                                Tomb Raider: Underworld
## 1581                                                                                                          Kung Fu Panda
## 1582                                                                                                           LEGO Battles
## 1583                                                                                                          NBA Live 2001
## 1584                                                                                                          Saints Row IV
## 1585                                                                                         Star Wars: The Force Unleashed
## 1586                                                                                                                 Combat
## 1587                                                                                                             Watch Dogs
## 1588                                                                                   SOCOM: U.S. Navy SEALs Confrontation
## 1589                                                                                          Dragon Ball: Daimaou Fukkatsu
## 1590                                                                          Gegege no Kitarou 2: Youkai Gundan no Chousen
## 1591                                                                                                           Reel Fishing
## 1592                                                                                            Need for Speed: Most Wanted
## 1593                                                                                           Pokemon XD: Gale of Darkness
## 1594                                                                                                                  Black
## 1595                                                                                        Tom Clancy's Rainbow Six: Vegas
## 1596                                                                                                LittleBigPlanet PS Vita
## 1597                                                                                          Pokemon Super Mystery Dungeon
## 1598                                                                                                 RollerCoaster Tycoon 2
## 1599                                                                                                            Ratatouille
## 1600                                                                          Lara Croft Tomb Raider: The Angel of Darkness
## 1601                                                                           Tom Clancy's Splinter Cell: Pandora Tomorrow
## 1602                                                                                                           Road Rash 3D
## 1603                                                                                                    Ratchet: Deadlocked
## 1604                                                                                  Winter Sports: The Ultimate Challenge
## 1605                                                                                           Baldur's Gate: Dark Alliance
## 1606                                                                                                Oddworld: Abe's Oddysee
## 1607                                                                                                          Ridge Racer V
## 1608                                                                                             WWE SmackDown vs. Raw 2009
## 1609                                                                                            Tetris 2 (All region sales)
## 1610                                                                                           LEGO Harry Potter: Years 5-7
## 1611                                                                             Star Wars Episode III: Revenge of the Sith
## 1612                                                                                                            [Prototype]
## 1613                                                                                   Transformers: Autobots / Decepticons
## 1614                                                                                                            FIFA Street
## 1615                                                                                               Frogger: The Great Quest
## 1616                                                                                                          Madden NFL 17
## 1617                                                                                                           Ninja Gaiden
## 1618                                                                                                                 Cars 2
## 1619                                                                                   Crash Bandicoot: The Wrath of Cortex
## 1620                                                                                                                 Driv3r
## 1621                                                                                           Assassin's Creed: Bloodlines
## 1622                 Disney's Tarzan / Disney's Aladdin in Nasira's Revenge / Disney's The Emperor's New Groove Action Game
## 1623                                                                                                      Kingdom Hearts II
## 1624                                                                                             LEGO The Lord of the Rings
## 1625                                                                                                  Kirby Tilt 'n' Tumble
## 1626                                                                        SpongeBob SquarePants: Battle for Bikini Bottom
## 1627                                                                                                            Vigilante 8
## 1628                                                                                                        Hyrule Warriors
## 1629                                                                                                            Castlevania
## 1630                                                                                                  Donkey Kong Country 2
## 1631                                                                                                 Guitar Hero: Aerosmith
## 1632                                                                                       WarioWare, Inc.: Mega MicroGame$
## 1633                                                                                                  Need for Speed Carbon
## 1634                                                                                             Ben 10: Protector of Earth
## 1635                                                                                       2010 FIFA World Cup South Africa
## 1636                                                                                                        Tales of Xillia
## 1637                                                                                                   Diddy Kong Racing DS
## 1638                                                                                                     Mario Power Tennis
## 1639                                                                                                       Intelligent Qube
## 1640                                                                                                                Pac-Man
## 1641                                                                                                 Game & Watch Gallery 2
## 1642                                                                                                 Game & Watch Gallery 3
## 1643                                                                                         Parfait: Chocolat Second Style
## 1644                                                                                                            NBA Live 99
## 1645                                                                                             Chocobo no Fushigi Dungeon
## 1646                                                                                               Golden Sun: The Lost Age
## 1647                                                                                                           SimCity 2000
## 1648                                                                                                              Max Payne
## 1649                                                                                                             WCW Mayhem
## 1650                                                                                                                NBA 2K2
## 1651                                                                                                    NASCAR Thunder 2003
## 1652                                                                                                                   Cars
## 1653                                                                                                          Fuzion Frenzy
## 1654                                                                                              Call of Duty: Finest Hour
## 1655                                                                                                       Final Fantasy IV
## 1656                                                                                              Star Wars: Battlefront II
## 1657                                                                                    Super Street Fighter IV: 3D Edition
## 1658                                                                                  Sly Cooper and the Thievius Raccoonus
## 1659                                                                                                               WWE 2K16
## 1660                                                                                Star Wars Episode 1: Jedi Power Battles
## 1661                                                                                                          Dino Crisis 2
## 1662                                                                                The Magical Quest starring Mickey Mouse
## 1663                                                                              Dragon Quest IV: Michibikareshi Monotachi
## 1664                                                                                             Need for Speed Underground
## 1665                                                                               Naruto Shippuden: Ultimate Ninja Storm 2
## 1666                                                                                               Medal of Honor: Airborne
## 1667                                                                                                  Battlefield: Hardline
## 1668                                                                           Shrek / Shrek 2 2-in-1 Gameboy Advance Video
## 1669                                                                                                              Bayonetta
## 1670                                                                                                           Test Drive 4
## 1671                                                                                                              Boom Blox
## 1672                                                                      World Soccer Winning Eleven 9 (JP & Others sales)
## 1673                                                                      The Lord of the Rings: The Fellowship of the Ring
## 1674                                                                                                   The Sims 2: Castaway
## 1675                                                                                                         FIFA Soccer 07
## 1676                                                                                                     ATV Offroad Fury 3
## 1677                                                                                                                F1 2011
## 1678                                                                                                 Farming Simulator 2015
## 1679                                                                                                               Pikmin 2
## 1680                                                                                                                 NFL 2K
## 1681                                                                                                           SolarStriker
## 1682                                                                                                                TwinBee
## 1683                                                                                       Ganbare Goemon! Karakuri Douchuu
## 1684                                                                                        Dragon Ball Z: La Legende Saien
## 1685                                                                                                       Enter the Matrix
## 1686                                                                                                                   Cars
## 1687                                                                                                               NHL 2002
## 1688                                                                                                         FIFA Soccer 11
## 1689                                                                                                         Nuclear Strike
## 1690                                                                                                The Simpsons: Road Rage
## 1691                                                                                         LEGO Batman 2: DC Super Heroes
## 1692                                                                                         Captain Toad: Treasure Tracker
## 1693                                                                  SpongeBob SquarePants: Revenge of the Flying Dutchman
## 1694                                                                                              Pro Evolution Soccer 2008
## 1695                                                                                                Destiny: The Taken King
## 1696                                                                                           Scarface: The World is Yours
## 1697                                                                                  Disney's Chip 'n Dale: Rescue Rangers
## 1698                                                                                           Kobe Bryant in NBA Courtside
## 1699                                                                                  The Dukes of Hazzard: Racing for Home
## 1700                                                                                              Hitman 2: Silent Assassin
## 1701                                                                                                         Disney Sing It
## 1702                                                                                              WWE SmackDown vs Raw 2008
## 1703                                                                                                  Spider-Man: The Movie
## 1704                                                                                    Final Fantasy I & II: Dawn of Souls
## 1705                                                                            Mario vs. Donkey Kong 2: March of the Minis
## 1706                                                                                         Metal Gear Solid: Portable Ops
## 1707                                                                                           Metal Gear Solid VR Missions
## 1708                                                                          LEGO Indiana Jones 2: The Adventure Continues
## 1709                                                                         Mario & Sonic at the London 2012 Olympic Games
## 1710                                                                                                          Pole Position
## 1711                                                                                               Injustice: Gods Among Us
## 1712                                                                                                           Mario Tennis
## 1713                                                                                                                Shenmue
## 1714                                                                                          Pro Yakyuu Family Stadium '88
## 1715                                                                                                           Just Dance 4
## 1716                                                                                               Tony Hawk's Pro Skater 2
## 1717                                                                                             One Piece: Pirate Warriors
## 1718                                                                                                 Super Ghouls 'n Ghosts
## 1719                                                                                                          Soviet Strike
## 1720                                                                                                                    Gun
## 1721                                                                                                 Ty the Tasmanian Tiger
## 1722                                                                                  Resident Evil: Operation Raccoon City
## 1723                                                                                                             Mega Man 3
## 1724                                                                            LEGO Indiana Jones: The Original Adventures
## 1725                                                                                     Pok茅Park Wii: Pikachu's Adventure
## 1726                                                                                                                WWE '12
## 1727                                                                                                         Mad Max (2015)
## 1728                                                                                                       Romancing SaGa 2
## 1729                                                                                                    Mission: Impossible
## 1730                                                                                               Cabela's Dangerous Hunts
## 1731                                                                                                     Grand Theft Auto V
## 1732                                                                                                     Fallout: New Vegas
## 1733                                                                                                        Cool Boarders 4
## 1734                                                                                             WWE SmackDown vs. Raw 2010
## 1735                                                                                                             Rage Racer
## 1736                                                                                             Medal of Honor: Rising Sun
## 1737                                                                                                            Army of Two
## 1738                                                                                                                  Spore
## 1739                                                                                                    Destruction Derby 2
## 1740                                                                                                  Mario vs. Donkey Kong
## 1741                                                                                     LEGO Star Wars III: The Clone Wars
## 1742                                                                                     Midnight Club 3: DUB Edition Remix
## 1743                                                                                 Tom Clancy's Ghost Recon: Jungle Storm
## 1744                                                                                                          Bushido Blade
## 1745                                                                                                          Mirror's Edge
## 1746                                                                                                     Sonic the Hedgehog
## 1747                                                                                                    NASCAR Thunder 2002
## 1748                                                                 Yu-Gi-Oh! The Sacred Cards (American and Others sales)
## 1749                                                                                                Sega Rally Championship
## 1750                                                                                                       Jet Force Gemini
## 1751                                                                                                             Mega Man X
## 1752                                                                                                   Test Drive: Off Road
## 1753                                                                                       Your Shape: Fitness Evolved 2012
## 1754                                                                                                                FIFA 14
## 1755                                                                            Final Fantasy Tactics: The War of the Lions
## 1756                                                                                         LEGO Star Wars: The Video Game
## 1757                                                                                                  Sniper: Ghost Warrior
## 1758                                                                                                   Sonic Rush Adventure
## 1759                                                                                          Worldwide Soccer Manager 2009
## 1760                                                                                                  Gauntlet: Dark Legacy
## 1761                                                                                                Medal of Honor Heroes 2
## 1762                                                                                               Bad Boys: Miami Takedown
## 1763                                                                                                  Wario Land: Shake It!
## 1764                                                                                                  Football Manager 2013
## 1765                                                                                                                Kaboom!
## 1766                                                                                             Medal of Honor: Warfighter
## 1767                                                                                                                    Qix
## 1768                                                                                                     Derby Stallion III
## 1769                                                                                                               Doraemon
## 1770                                                                                  High School Musical 2: Work This Out!
## 1771                                                                                                         FIFA Soccer 10
## 1772                                                                                                           Donkey Konga
## 1773                                                                                         Call of Duty 4: Modern Warfare
## 1774                                                                                                    Dragon Quest I & II
## 1775                                                                                              Tak and the Power of Juju
## 1776                                                                                                               WWE 2K15
## 1777                                                                                                              Asteroids
## 1778                                                                                                Puyo Puyo Sun Ketteiban
## 1779                                                                                                            Action Bass
## 1780                                                                                                Tenchu: Wrath of Heaven
## 1781                                                                                                 Shadow of the Colossus
## 1782                                                                                                   Brave Fencer Musashi
## 1783                                                                                                     Ninja Gaiden Sigma
## 1784                                                                                                               WWE 2K14
## 1785                                                                                                   Pokemon Rumble Blast
## 1786                                                                                                 007: Quantum of Solace
## 1787                                                                                       Dance Dance Revolution Extreme 2
## 1788                                                                                         Resident Evil - Code: Veronica
## 1789                                                                                                      Super R.C. Pro-Am
## 1790                                                                                                             South Park
## 1791                                                                                                               Commando
## 1792                                                                                                             Pilotwings
## 1793                                                                          The Lord of the Rings: The Return of the King
## 1794                                                                                         LEGO Star Wars: The Video Game
## 1795                                                                                          Hot Shots Golf: Out of Bounds
## 1796                                                                   Royal Palace of White Sword and The City of Gentiles
## 1797                                                                                  Red Dead Redemption: Undead Nightmare
## 1798                                                                                             Ratchet & Clank: All 4 One
## 1799                                                                                                       Sunset Overdrive
## 1800                                                                                Mobile Suit Gundam: Federation vs. Zeon
## 1801                                                                                           Need for Speed Underground 2
## 1802                                                                               Naruto Shippuden: Ultimate Ninja Storm 4
## 1803                                                                                                            MechAssault
## 1804                                                                                        EA Sports Active: More Workouts
## 1805                                                                                                      Derby Stallion 99
## 1806                                                                                                                   Cars
## 1807                                                                                                           Watch Dogs 2
## 1808                                                                                     LEGO Star Wars III: The Clone Wars
## 1809                                                                                Tom Clancy's Rainbow Six 3: Black Arrow
## 1810                                                                                                            Donkey Kong
## 1811                                                                                                          Mirror's Edge
## 1812                                                                                                          Guitar Hero 5
## 1813                                                                                                       Alien: Isolation
## 1814                                                                                                     Jampack Winter '98
## 1815                                                                                                           Fantasy Life
## 1816                                                            Pok茅mon Mystery Dungeon: Red Rescue Team (US weekly sales)
## 1817                                                                                                               SingStar
## 1818                                                                                  The Legend of Zelda: Tri Force Heroes
## 1819                                                                                                            Moon Patrol
## 1820                                                                                              Supercar Street Challenge
## 1821                                                                                                          Pilotwings 64
## 1822                                                                                                        Rabbids Go Home
## 1823                                                                                                       ModNation Racers
## 1824                                                                                  SOCOM: U.S. Navy SEALs Fireteam Bravo
## 1825                                                                                                              Rocksmith
## 1826                                                                                            Call Of Duty 2: Big Red One
## 1827                                                                                                         Yoshi's Cookie
## 1828                                                                                                              Rocksmith
## 1829                                                                                                          Guitar Hero 5
## 1830                                                                                          Worldwide Soccer Manager 2008
## 1831                                                                                                               Yakuza 3
## 1832                                                                                                      Persona 4: Golden
## 1833                                                                                                           Spider-Man 2
## 1834                                                                                                            Crackdown 2
## 1835                                                                                                 The Beatles: Rock Band
## 1836                                                                                                          Dragon Age II
## 1837                                                                                                         Counter-Strike
## 1838                                                         Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 1839                                                                                      Guitar Hero Encore: Rocks The 80s
## 1840                                                                                                   Fight Night Champion
## 1841                                                                                                              Rock Band
## 1842                                                                               Tom Clancy's Splinter Cell: Chaos Theory
## 1843                                                                                             NBA Jam Tournament Edition
## 1844                                                                                                        Donkey Kong Jr.
## 1845                                                                                                            Arc the Lad
## 1846                                                                                                         Legend of Mana
## 1847                                                                                                               Pikmin 3
## 1848                                                                                                               WWE 2K14
## 1849                                                                                                 Dragon Ball: XenoVerse
## 1850                                                                                                 Lumines: Puzzle Fusion
## 1851                                                                                                              Megamania
## 1852                                                                                                            Jungle Hunt
## 1853                                                                                           Castlevania: Lords of Shadow
## 1854                                                                                                         Triple Play 98
## 1855                                                                                                     Plants vs. Zombies
## 1856                                                                                                            Lode Runner
## 1857                                                                                               The Final Fantasy Legend
## 1858                                                                                           Famicom Jump: Eiyuu Retsuden
## 1859                                                                                                               F-Zero X
## 1860                                                                                                                 Popeye
## 1861                                                                          Yu-Gi-Oh! Duel Monsters II: Dark Duel Stories
## 1862                                                                                              Omerta: City of Gangsters
## 1863                                                                                                          NBA Live 2001
## 1864                                                                                                       SingStar Legends
## 1865                                                                                                        SingStar Rocks!
## 1866                                                                                                     Tales of Symphonia
## 1867                                                                                                   LEGO City Undercover
## 1868                                                                                              Need for Speed: ProStreet
## 1869                                                                                                                   GRID
## 1870                                                                                               Medal of Honor: Airborne
## 1871                                                                                           Star Ocean: The Second Story
## 1872                                                                                                            Petz Dogz 2
## 1873                                                                                                       NCAA Football 14
## 1874                                                                                                               Yakuza 2
## 1875                                                                                                          Guitar Hero 5
## 1876                                                                                   Dragon Ball Z: The Legacy of Goku II
## 1877                                                                                                          NERF N-Strike
## 1878                                                                                                                NFL 2K1
## 1879                                                                                                              BeatMania
## 1880                                                                               Untold Legends: Brotherhood of the Blade
## 1881                                                                                                           Project CARS
## 1882                                                                                                        Madden NFL 2004
## 1883                                                                                             Sonic and the Black Knight
## 1884                                                                                                          The Godfather
## 1885                                                                                                      Sonic Free Riders
## 1886                                                                                               Star Wars: Bounty Hunter
## 1887                                                                                                          Densha De Go!
## 1888                                                                                             WWE SmackDown vs. Raw 2011
## 1889                                                                                     LEGO Star Wars III: The Clone Wars
## 1890                                                                                                       NCAA Football 13
## 1891                                                                                                                Skate 2
## 1892                                                                                                         NFL Blitz 2000
## 1893                                                                                                    NASCAR Thunder 2004
## 1894                                                                  SpongeBob SquarePants: Revenge of the Flying Dutchman
## 1895                                                                                                   Imagine: Babysitters
## 1896                                                                                         Namco Museum Battle Collection
## 1897                                                                                                  Fisherman's Bass Club
## 1898                                                                                                      Empire: Total War
## 1899                                                                                                       Virtua Fighter 5
## 1900                                                                                                        Dante's Inferno
## 1901                                                                                            Toy Story 3: The Video Game
## 1902                                                                                                                  Joust
## 1903                                                                                             Tom Clancy's Ghost Recon 2
## 1904                                                                                      Final Fantasy XIV: A Realm Reborn
## 1905                                                                                                        Forza Horizon 3
## 1906                                                                               Disney Infinity 2.0: Marvel Super Heroes
## 1907                                                                                                  Ready 2 Rumble Boxing
## 1908                                                                                         Star Wars: The Force Unleashed
## 1909                                                                                                Dragon Ball Z: Taiketsu
## 1910                                                                                                 Disney's Lilo & Stitch
## 1911                                                                                                      Star Fox: Assault
## 1912                                                                                     Plants vs. Zombies: Garden Warfare
## 1913                                                                                                      The Simpsons Game
## 1914                                                                                                        Doko Demo Issyo
## 1915                                                                                LEGO Star Wars II: The Original Trilogy
## 1916                                                                                                         Call of Duty 3
## 1917                                                                                                         FIFA Soccer 11
## 1918                                                                                     Imagine: Fashion Designer New York
## 1919                                                                                                       Prince of Persia
## 1920                                                                                             Championship Manager 99/00
## 1921                                                                                                         Virtua Fighter
## 1922                                                                                             WWE SmackDown vs. Raw 2010
## 1923                                                                                                      The Biggest Loser
## 1924                                                                                Marvel vs. Capcom 3: Fate of Two Worlds
## 1925                                                                                                Tomb Raider: Underworld
## 1926                                                                                                                 NHL 99
## 1927                                                                                              Pro Evolution Soccer 2008
## 1928                                                                                                        SoulCalibur III
## 1929                                                                                                Tiger Woods PGA Tour 10
## 1930                                                                                                          MySims Agents
## 1931                                                                                                 Ridge Racer Revolution
## 1932                                                                                                      World Tour Soccer
## 1933                                                                                           Naruto: Ultimate Ninja Storm
## 1934                                                                                  Red Dead Redemption: Undead Nightmare
## 1935                                                                                  Lightning Returns: Final Fantasy XIII
## 1936                                                                                                Hot Wheels Turbo Racing
## 1937                                                                                                       NCAA Football 99
## 1938                                                                                              Mortal Kombat: Armageddon
## 1939                                                                                                             Freekstyle
## 1940                                                                                       Grand Theft Auto: Chinatown Wars
## 1941                                                                                                        Spore Creatures
## 1942                                                                                                         The Orange Box
## 1943                                                                                 Simple 1500 Series Vol. 1: The Mahjong
## 1944                                                                                                                DJ Hero
## 1945                                                                                             Bully: Scholarship Edition
## 1946                                                                                                          NBA Street V3
## 1947                                                                                                       Worms Armageddon
## 1948                                                                                                                   Hulk
## 1949                                                                                                              Overwatch
## 1950                                                                                                NFL Quarterback Club 98
## 1951                                                                                                              NFL Blitz
## 1952                                                                                                     Aliens vs Predator
## 1953                                                                                                      Skylanders Giants
## 1954                                                                                         Diablo II: Lord of Destruction
## 1955                                                                                                          Endless Ocean
## 1956                                                                                                           Spider-Man 2
## 1957                                                                                                       Seek and Destroy
## 1958                                                                                                             Darksiders
## 1959                                                                                         Mercenaries 2: World in Flames
## 1960                                                                                               LEGO Marvel Super Heroes
## 1961                                                                                                                Warhawk
## 1962                                                                                                                 DiRT 3
## 1963                                                                                                 Sega Superstars Tennis
## 1964                                                                                                                   DiRT
## 1965                                                                                         Call of Duty 4: Modern Warfare
## 1966                                                                                                             Cosmic Ark
## 1967                                                                                 Resident Evil: The Darkside Chronicles
## 1968                                                                                SOCOM: U.S. Navy SEALs Fireteam Bravo 2
## 1969                                                                                                               Defender
## 1970                                                                             Dora the Explorer: Dora Saves the Mermaids
## 1971                                                                                                         Arc the Lad II
## 1972                                                                                            Tag Team Match M.U.S.C.L.E.
## 1973                                                                                                      Derby Stallion 96
## 1974                                                                                                       Adventure Island
## 1975                                                                                                                NBA 2K3
## 1976                                                                                             LEGO The Lord of the Rings
## 1977                                                                                                The Simpsons: Road Rage
## 1978                                                                                               Dave Mirra Freestyle BMX
## 1979                                                                                                          EA Sports UFC
## 1980                                                                                                       Forza Motorsport
## 1981                                                                                                        Virtua Tennis 3
## 1982                                                                                                      Monster Rancher 2
## 1983                                                                                                      MVP Baseball 2003
## 1984                                                                                                 Imagine: Animal Doctor
## 1985                                                                                            Legacy of Kain: Soul Reaver
## 1986                                                                                             WWE SmackDown vs. Raw 2010
## 1987                                                                                                       Tales of Destiny
## 1988                                                                                                          Sleeping Dogs
## 1989                                                                                                 ATV: Quad Power Racing
## 1990                                                                                                            Mega Man X4
## 1991                                                                                               Naruto: Clash of Ninja 2
## 1992                                                                                       Dance Dance Revolution SuperNOVA
## 1993                                                                                                     Aliens vs Predator
## 1994                                                                                                           Bomberman 64
## 1995                                                                                           Jeremy McGrath Supercross 98
## 1996                                                                                               F-Zero: Maximum Velocity
## 1997                                                                                                     Sonic the Hedgehog
## 1998                                                                                          Sonic & Sega All-Stars Racing
## 1999                                                                                            Need for Speed: Most Wanted
## 2000                                                                                                      The Simpsons Game
## 2001                                                                                                                F1 2012
## 2002                                                                                                                  Brink
## 2003                                                                                                   MX vs. ATV Unleashed
## 2004                                                                                                           WipEout Pure
## 2005                                                                                                       UFC Undisputed 3
## 2006                                                                          LEGO Pirates of the Caribbean: The Video Game
## 2007                                                                         Tom Clancy's Ghost Recon Advanced Warfighter 2
## 2008                                                                                                   Super Princess Peach
## 2009                                                                                  Guinness World Records: The Videogame
## 2010                                                                                                NCAA March Madness 2004
## 2011                                                                                                   Donkey Kong Land III
## 2012                                                                                                              Bomberman
## 2013                                                                              The Legend of Zelda: Twilight Princess HD
## 2014                                                                            LEGO Indiana Jones: The Original Adventures
## 2015                                                                                                            Tomb Raider
## 2016                                                                                                 Street Fighter Alpha 3
## 2017                                                                                                          MySims Agents
## 2018                                                                                                   Junior Brain Trainer
## 2019                                                                                                MotorStorm: Arctic Edge
## 2020                                                                                                         FIFA Soccer 08
## 2021                                                                                                            ZhuZhu Pets
## 2022                                                                                                Tiger Woods PGA Tour 08
## 2023                                                                                     Dragon Ball Z: Budokai Tenkaichi 3
## 2024                                                                                                                Shrek 2
## 2025                                                                                                               NBA 2K17
## 2026                                                                         Tom Clancy's Ghost Recon Advanced Warfighter 2
## 2027                                                                                                        Sonic Unleashed
## 2028                                                                                                          Final Fight 2
## 2029                                                                                          The Lost World: Jurassic Park
## 2030                                                                                                        Disney Universe
## 2031                                                                                                      Dance on Broadway
## 2032                                                                          LEGO Indiana Jones 2: The Adventure Continues
## 2033                                                                                                           Petz: Catz 2
## 2034                                                                                                            Bulletstorm
## 2035                                                                                                  Skylanders SWAP Force
## 2036                                                                                                          Madden NFL 07
## 2037                                                                                                      Sonic Generations
## 2038                                                                                                            Rock Band 2
## 2039                                                                               Harry Potter and the Prisoner of Azkaban
## 2040                                                                                                       Pokemon Conquest
## 2041                                                                                                                 Wall-E
## 2042                                                                                                   Pong: The Next Level
## 2043                                                                                      Naruto: Clash of Ninja Revolution
## 2044                                                                      Disney Fairies: Tinker Bell and the Lost Treasure
## 2045                                                                                      Ace Combat 6: Fires of Liberation
## 2046                                                                                                      The Simpsons Game
## 2047                                                                                             NBA Jam Tournament Edition
## 2048                                                                                                 Championship Manager 3
## 2049                                                                                            Need for Speed: Most Wanted
## 2050                                                                                                        Ninja Gaiden II
## 2051                                                                                                Assassin's Creed: Rogue
## 2052                                                                                                         Rayman Legends
## 2053                                                                              Oshare Majo Love and Berry: DS Collection
## 2054                                                                                                       Prince of Persia
## 2055                                                                                                        Monster Rancher
## 2056                                                                                                                 ZombiU
## 2057                                                                                                      Pokken Tournament
## 2058                                                                                                          Ford Racing 2
## 2059                                                                                                     Breath of Fire III
## 2060                                                                                                    NERF N-Strike Elite
## 2061                                                                                            God of War: Ghost of Sparta
## 2062                                                                                                        Dead or Alive 2
## 2063                                                                                                                   1942
## 2064                                                                                                   Game & Watch Gallery
## 2065                                                                                                          Excitebike 64
## 2066                                                                                               NES Open Tournament Golf
## 2067                                                                            Jissen Pachi-Slot Hisshouhou: Hokuto no Ken
## 2068                                                                                                         SoulCalibur II
## 2069                                                                                         PES 2009: Pro Evolution Soccer
## 2070                                                           Winning Eleven: Pro Evolution Soccer 2007 (All Region sales)
## 2071                                                                              Road & Track Presents: The Need for Speed
## 2072                                                                                                       NFL GameDay 2001
## 2073                                                                                                            NBA Live 97
## 2074                                                                                     Dynasty Warriors 3: Xtreme Legends
## 2075                                                                                                         Rayman Origins
## 2076                                                                                                    Jampack Winter 2000
## 2077                                                                                                         NFL Fever 2002
## 2078                                                                                                        Just Dance 2014
## 2079                                                                                                       NCAA Football 12
## 2080                                                                                                The Simpsons: Hit & Run
## 2081                                                                                                       UFC Undisputed 3
## 2082                                                                                                     Kirby: Mass Attack
## 2083                                                                                                                   Haze
## 2084                                                                                                Oddworld: Abe's Exoddus
## 2085                                                                                                            The Bouncer
## 2086                                                                                                                 DiRT 2
## 2087                                                                                                 Guitar Hero: Aerosmith
## 2088                                                                                                    Shadow The Hedgehog
## 2089                                                                                                                 EyePet
## 2090                                                                                           Apollo Justice: Ace Attorney
## 2091                                                                                       Ace Combat X: Skies of Deception
## 2092                                                                                                             Dark Souls
## 2093                                                                                                      Cars: Race-O-Rama
## 2094                                                                                                     Puzzler Collection
## 2095                                                                                                Midnight Club: LA Remix
## 2096                                                                                              Pro Evolution Soccer 2008
## 2097                                                                                              Littlest Pet Shop: Winter
## 2098                                                                                                   Final Fantasy Type-0
## 2099                                                                                                         FIFA Soccer 10
## 2100                                                                                                      Tales of Graces f
## 2101                                                                                                              Fallout 3
## 2102                                                                                                    Mario Party Advance
## 2103                                                                                                               Tetris 2
## 2104                                                                                                          Zoo Tycoon DS
## 2105                                                                                                              NASCAR 99
## 2106                                                                                              WWE SmackDown vs Raw 2008
## 2107                                                                                                         Air-Sea Battle
## 2108                                                                                                           Dead Space 3
## 2109                                                                                                           Suikoden III
## 2110                                                                                                         Rocksmith 2014
## 2111                                                                                  Tom Clancy's Splinter Cell: Blacklist
## 2112                                                                                                          Madden NFL 10
## 2113                                                                                                               NBA 2K10
## 2114                                                                                                       NCAA Football 06
## 2115                                                                                                          Madden NFL 16
## 2116                                                                                          Grand Theft Auto: San Andreas
## 2117                                                                                                          Madden NFL 08
## 2118                                                                                                            Fire Emblem
## 2119                                                                                                          Brutal Legend
## 2120                                                                                                        Disney Infinity
## 2121                                                                                   Tamagotchi Connection: Corner Shop 2
## 2122                                                                                                               NHL 2004
## 2123                                                                                    Grand Theft Auto: Vice City Stories
## 2124                                                                                                         Disney Tangled
## 2125                                                                                                       Wheel of Fortune
## 2126                                                                                                       FIFA Soccer 2005
## 2127                                                                                                          Mass Effect 3
## 2128                                                                                                                   Cars
## 2129                                                                                                              Band Hero
## 2130                                                                                                         Romancing SaGa
## 2131                                                                                          Skylanders: Spyro's Adventure
## 2132                                                                                                     Donkey Kong Junior
## 2133                                                                                           LEGO Harry Potter: Years 5-7
## 2134                                                                                LEGO Star Wars II: The Original Trilogy
## 2135                                                                                            Medal of Honor: Underground
## 2136                                                                                                           Dark Cloud 2
## 2137                                                                                                              Far Cry 3
## 2138                                                                                                                 Evolve
## 2139                                                                                                           Dead Space 3
## 2140                                                                                                         Dragon Quest X
## 2141                                                                                                     Jampack Summer '99
## 2142                                                                                       Dance Dance Revolution 2nd ReMIX
## 2143                                                                                                  Mortal Kombat Trilogy
## 2144                                                                                                           Star Soldier
## 2145                                                                                                               NHL 2001
## 2146                                                                                                 Farming Simulator 2013
## 2147                                                                                          Guitar Hero: Warriors of Rock
## 2148                                                                                                                de Blob
## 2149                                                                           Dragon Quest Monsters: Terry's Wonderland 3D
## 2150                                                                                                                Shinobi
## 2151                                                                                         Mortal Kombat: Deadly Alliance
## 2152                                                                                      The Witcher 2: Assassins of Kings
## 2153                                                                                                        Sniper Elite V2
## 2154                                                                                                           ESPN NBA 2K5
## 2155                                                                                                        Gangs of London
## 2156                                                                                                      Mario Tennis Open
## 2157                                                                                                      PilotWings Resort
## 2158                                                                                                       Wheel of Fortune
## 2159                                                                                               World Championship Poker
## 2160                                                                                                   My Weight Loss Coach
## 2161                                                                               Tom Clancy's Splinter Cell: Chaos Theory
## 2162                                                                                                        Sonic Unleashed
## 2163                                                                        SpongeBob SquarePants: Battle for Bikini Bottom
## 2164                                                                               Disney Infinity 2.0: Marvel Super Heroes
## 2165                                                                                    PlayStation All-Stars Battle Royale
## 2166                                                                                              Scooby-Doo! First Frights
## 2167                                                                                        Epic Mickey 2: The Power of Two
## 2168                                                                             Mega Man Star Force Dragon / Leo / Pegasus
## 2169                                                                                              Pro Evolution Soccer 2014
## 2170                                                                                                               Yakuza 4
## 2171                                                                                                              Wild ARMs
## 2172                                                                               Tom Clancy's Ghost Recon: Future Soldier
## 2173                                                                                                                 Kessen
## 2174                                                                                                  Driver: San Francisco
## 2175                                                             Yu-Gi-Oh! Worldwide Edition: Stairway to the Destined Duel
## 2176                                                                                                     NCAA Football 2000
## 2177                                                                                                    Ben 10: Alien Force
## 2178                                                                                              Army of Two: The 40th Day
## 2179                                                                                          Sonic & Sega All-Stars Racing
## 2180                                                                                                        Just Dance 2016
## 2181                                                                                                  Skylanders: Trap Team
## 2182                                                                                                          Lost Planet 2
## 2183                                                                          LEGO Pirates of the Caribbean: The Video Game
## 2184                                                                                                               NBA 2K16
## 2185                                                                                                               Killzone
## 2186                                                                                                   Colin McRae Rally 04
## 2187                                                                                                Club Penguin: Game Day!
## 2188                                                                                        The SpongeBob SquarePants Movie
## 2189                                                                                                         Star Fox 64 3D
## 2190                                                         Midway Presents Arcade's Greatest Hits: The Atari Collection 1
## 2191                                                                                       Castlevania: Lament of Innocence
## 2192                                                                                                         Rocksmith 2014
## 2193                                                                                  Tom Clancy's Splinter Cell: Blacklist
## 2194                                                                                                    Destroy All Humans!
## 2195                                                                                          Skylanders: Spyro's Adventure
## 2196                                                                                                      MVP Baseball 2005
## 2197                                                                                                        SaGa Frontier 2
## 2198                                                                                                 Phantasy Star Portable
## 2199                                                                                             WWE SmackDown vs. Raw 2009
## 2200                                                                                                       NCAA Football 10
## 2201                                                                                                          Brutal Legend
## 2202                                                                                                        Tony Hawk: RIDE
## 2203                                                                                                               MLB 2000
## 2204                                                                                                                  Bully
## 2205                                                                                                Rise of the Tomb Raider
## 2206                                                                                    Prince of Persia: The Sands of Time
## 2207                                                                                                   Hot Shots Golf Fore!
## 2208                                                                                                       MLB 06: The Show
## 2209                                                                                                               NHL 2003
## 2210                                                                               Naruto Shippuden: Ultimate Ninja Storm 3
## 2211                                                                                                        EA Sports UFC 2
## 2212                                                                                                             The Sims 2
## 2213                                                                                                     Bentley's Hackpack
## 2214                                                                                               Tony Hawk's Pro Skater 4
## 2215                                                                                                Dragon Age: Inquisition
## 2216                                                                         White Knight Chronicles: International Edition
## 2217                                                                                                          SingStar Abba
## 2218                                                                                                      Crash City Mayhem
## 2219                                                                                                             Spider-Man
## 2220                                                                                                  Kirby: Planet Robobot
## 2221                                                                             Toy Story 2: Buzz Lightyear to the Rescue!
## 2222                                                                                          Castlevania II: Simon's Quest
## 2223                                                                                                             Mega Man 4
## 2224                                                                                                 Guitar Hero: Metallica
## 2225                                                                                           Teenage Mutant Ninja Turtles
## 2226                                                                                                              Bayonetta
## 2227                                                                                                       MLB 07: The Show
## 2228                                                                                                                   Cars
## 2229                                                                                                  Build-A-Bear Workshop
## 2230                                                                                                Kingdom Hearts Re:coded
## 2231                                                                                    Operation Flashpoint: Dragon Rising
## 2232                                                                                                       Inazuma Eleven 3
## 2233                                                                                           Lego Batman 3: Beyond Gotham
## 2234                                                                                                   Wipeout: In The Zone
## 2235                                                                                           SnoCross Championship Racing
## 2236                                                                                       Brothers in Arms: Hell's Highway
## 2237                                                                                               The LEGO Movie Videogame
## 2238                                                                                                   Assassin's Creed III
## 2239                                                                                                          Borderlands 2
## 2240                                                                                           Teenage Mutant Ninja Turtles
## 2241                                                                                                   Disney Magical World
## 2242                                                                                                  Top Gun: Combat Zones
## 2243                                                                                                       NCAA Football 11
## 2244                                                                                           007: The World is not Enough
## 2245                                                                                                                   Cars
## 2246                                                                                             Monster High: Ghoul Spirit
## 2247                                                                                           Phoenix Wright: Ace Attorney
## 2248                                                                                                       MLB 15: The Show
## 2249                                                                                         South Park: The Stick of Truth
## 2250                                                                                         South Park: The Stick of Truth
## 2251                                                                                                                 NHL 98
## 2252                                                                                                              Space Jam
## 2253                                                                                                          Balloon Fight
## 2254                                                                                                    Knockout Kings 2000
## 2255                                                                                                       MLB 12: The Show
## 2256                                                                              SpongeBob SquarePants: The Yellow Avenger
## 2257                                                                                                        Dante's Inferno
## 2258                                                                                                       Wii Play: Motion
## 2259                                                                                             WWE SmackDown vs. Raw 2009
## 2260                                                                                                           Sonic Riders
## 2261                                                                                                        Starsky & Hutch
## 2262                                                                                                             Tobal No.1
## 2263                                                                                                            Blue Dragon
## 2264                                                                                                       Buzz! Quiz World
## 2265                                                                                       Harvest Moon 3D: A New Beginning
## 2266                                                                                                          Kung Fu Panda
## 2267                                                                                                           Street Hoops
## 2268                                                                                            EA Sports Grand Slam Tennis
## 2269                                                                                                     EA Sports Active 2
## 2270                                                                                                        Nickelodeon Fit
## 2271                                                                                                    Knockout Kings 2002
## 2272                                                                                               Injustice: Gods Among Us
## 2273                                                                                                    Tom Clancy's EndWar
## 2274                                                                                           LEGO Harry Potter: Years 5-7
## 2275                                                                                                   Tokyo Xtreme Racer 3
## 2276                                                                                                   Xenoblade Chronicles
## 2277                                                                                                       Assassin's Creed
## 2278                                                                                                                 Glover
## 2279                                                                                                  Colin McRae Rally 2.0
## 2280                                                                                                     Dynasty Warriors 7
## 2281                                                                                                               NBA 2K14
## 2282                                                                                                           Namco Museum
## 2283                                                                                                                    SSX
## 2284                                                                                             Sonic Riders: Zero Gravity
## 2285                                                                                                AMF Bowling Pinbusters!
## 2286                                                                                           Super Momotarou Dentetsu III
## 2287                                                                                             Sonic Mega Collection Plus
## 2288                                                                                    Operation Flashpoint: Dragon Rising
## 2289                                                                                              Tiger Woods PGA Tour 2002
## 2290                                                                                                           Lost Odyssey
## 2291                                                                                                       Street Fighter V
## 2292                                                                                                           Just Cause 3
## 2293                                                                              Mini-Yonku Shining Scorpion: Let's & Go!!
## 2294                                                                                                               MLB 2005
## 2295                                                                                            Marvel: Ultimate Alliance 2
## 2296                                                                                                        Burnout Revenge
## 2297                                                                                                               Crysis 3
## 2298                                                                                                              Far Cry 4
## 2299                                                                                      The Witcher 2: Assassins of Kings
## 2300                                                                                                              Homefront
## 2301                                                                                                      Destruction Derby
## 2302                                                                                                    LEGO Jurassic World
## 2303                                                                                                       Avatar: The Game
## 2304                                                                                               The Elder Scrolls Online
## 2305                                                                                                                3Xtreme
## 2306                                                                                                       Hot Shots Tennis
## 2307                                                                                                      MX vs. ATV Reflex
## 2308                                                                                                          Madden NFL 25
## 2309                                                                                                           Sonic Heroes
## 2310                                                                                                          Madden NFL 99
## 2311                                                                                                           Spider-Man 3
## 2312                                                                                       James Bond 007: Agent Under Fire
## 2313                                                                          LEGO Pirates of the Caribbean: The Video Game
## 2314                                                                                               LEGO Marvel Super Heroes
## 2315                                                                                                                DJ Hero
## 2316                                                                                                  Skylanders: Trap Team
## 2317                                                                                                          X-Men Legends
## 2318                                                                                                          NBA Live 2005
## 2319                                                                                      Harry Potter: Quidditch World Cup
## 2320                                                                                             LEGO The Lord of the Rings
## 2321                                                                                                             Madagascar
## 2322                                                                                                      Blitz: The League
## 2323                                                                                    The Biggest Loser: Ultimate Workout
## 2324                                                                                        Castlevania: Circle of the Moon
## 2325                                                                                               SOCOM 4: U.S. Navy SEALs
## 2326                                                                                                Tiger Woods PGA Tour 06
## 2327                                                                                                            FIFA Street
## 2328                                                                                Classic NES Series: The Legend of Zelda
## 2329                                                                                         Fire Emblem: The Sacred Stones
## 2330                                                                                                                 Cars 2
## 2331                                                                                                          TouchMaster 2
## 2332                                                                                  Pokemon Card GB2: Here Comes Team GR!
## 2333                                                                                                       MLB 16: The Show
## 2334                                                                                                   Killzone: Liberation
## 2335                                                                                                           Finding Nemo
## 2336                                                                                           Lego Batman 3: Beyond Gotham
## 2337                                                                                                           Ace Combat 2
## 2338                                                                                                                NFL 2K2
## 2339                                                                                                                   Pure
## 2340                                                                                                     We Ski & Snowboard
## 2341                                                                                                Resistance: Retribution
## 2342                                                                                             Call of Duty: World at War
## 2343                                                                                   Tiger Woods PGA Tour 12: The Masters
## 2344                                                                                                     CSI: Hard Evidence
## 2345                                                                                                               MLB 2001
## 2346                                                                                          The Jak and Daxter Collection
## 2347                                                                                                FIFA Soccer 09 All-Play
## 2348                                                                                                       SingStar Anthems
## 2349                                                                          LEGO Indiana Jones 2: The Adventure Continues
## 2350                                                                                                      Seiken Densetsu 3
## 2351                                                                                                        Fossil Fighters
## 2352                                                                                                          Buzz! Quiz TV
## 2353                                                                                                       NCAA Football 13
## 2354                                                                                                         Samba De Amigo
## 2355                                                                             Mega Man 8 Anniversary Collector's Edition
## 2356                                                                                                      The Simpsons Game
## 2357                                                                                         Call of Duty: Modern Warfare 2
## 2358                                                                                                The Tomb Raider Trilogy
## 2359                                                                                                                F1 2010
## 2360                                                                                         Call of Juarez: Bound in Blood
## 2361                                                                                                  Minecraft: Story Mode
## 2362                                                                                                          Rhythm Heaven
## 2363                                                                                                                NBA 2K6
## 2364                                                                                   Dissidia 012: Duodecim Final Fantasy
## 2365                                                                                                    Buzz! The Mega Quiz
## 2366                                                                        Star Wars: Rebel Assault II - The Hidden Empire
## 2367                                                                                             Monster 4X4: World Circuit
## 2368                                                                                                        Far Cry: Primal
## 2369                                                                                             Resident Evil: Revelations
## 2370                                                                                 Sonic Chronicles: The Dark Brotherhood
## 2371                                                                                         Star Wars: The Force Unleashed
## 2372                                                                                                    Grand Theft Auto IV
## 2373                                                                                                            Rock Band 3
## 2374                                                                                             WWE SmackDown vs. Raw 2011
## 2375                                                                                                           ESPN NHL 2K5
## 2376                                                                                   Borderlands: The Handsome Collection
## 2377                                                                                    Crimson Skies: High Road to Revenge
## 2378                                                                                                          Madden NFL 08
## 2379                                                                                                 Spec Ops: Ranger Elite
## 2380                                                                                                                    Gex
## 2381                                                                                                                F1 2009
## 2382                                                                                                      Derby Stallion II
## 2383                                                                               Tom Clancy's Ghost Recon: Island Thunder
## 2384                                                                                                          Sleeping Dogs
## 2385                                                                                          Kingdoms of Amalur: Reckoning
## 2386                                                                                                        Metal Gear Ac!d
## 2387                                                                                                Need for Speed: V-Rally
## 2388                                                                                                     Monster Strike 3DS
## 2389                                                                                   Kingdom Hearts Re: Chain of Memories
## 2390                                                                                               Phantasy Star Portable 2
## 2391                                                                                                    Peppa Pig: The Game
## 2392                                                                                        Michael Jackson: The Experience
## 2393                                                                                                        NFL GameDay '97
## 2394                                                                                                LittleBigPlanet Karting
## 2395                                                                                                  Tony Hawk's Project 8
## 2396                                                                                                               NHL 2000
## 2397                                                                                                                   GRID
## 2398                                                                                                                   DiRT
## 2399                                                                                                      Buzz! Master Quiz
## 2400                                                                                                 Red Faction: Guerrilla
## 2401                                                                                                    Fight Night Round 2
## 2402                                                                                                 Conflict: Desert Storm
## 2403                                                                                                    LEGO Jurassic World
## 2404                                                                                                       Triple Play 2002
## 2405                                                                                            Cooking Mama: World Kitchen
## 2406                                                                                       Brothers in Arms: Hell's Highway
## 2407                                                                                                          Vagrant Story
## 2408                                                                                                        Warriors Orochi
## 2409                                                                                                                 Enduro
## 2410                                                                                                               Crysis 3
## 2411                                                                                         Mercenaries 2: World in Flames
## 2412                                                                                                          SingStar '90s
## 2413                                                                                               Wizards of Waverly Place
## 2414                                                                                           Ghostbusters: The Video Game
## 2415                                                                          Dragon Quest VIII: Journey of the Cursed King
## 2416                                                                                                           Beijing 2008
## 2417                                                                                                       Guitar Hero Live
## 2418                                                                                              Endless Ocean: Blue World
## 2419                                                                              Winning Eleven: Pro Evolution Soccer 2007
## 2420                                                                                                                  Rocky
## 2421                                                                                                            Ford Racing
## 2422                                                                                                     Madden Football 64
## 2423                                                                                          Guitar Hero: Warriors of Rock
## 2424                                                                                                                 MLB 99
## 2425                                                                                                               Lemmings
## 2426                                                                                     Dynasty Warriors 4: Xtreme Legends
## 2427                                                                                                             Pictionary
## 2428                                                                                                   Army Men: Air Attack
## 2429                                                                                                         FIFA Soccer 08
## 2430                                                                                       2010 FIFA World Cup South Africa
## 2431                                                                                               Tomb Raider: Anniversary
## 2432                                                                                                                NBA 2K8
## 2433                                                                                                 Street Fighter Alpha 2
## 2434                                                                                              Tiger Woods PGA Tour 2005
## 2435                                                                                       Castlevania III: Dracula's Curse
## 2436                                                                                                    LEGO Jurassic World
## 2437                                                                                          Kingdoms of Amalur: Reckoning
## 2438                                                                                                     Rampage World Tour
## 2439                                                                                             Dragon Ball Z: Burst Limit
## 2440                                                                                              Gold's Gym: Dance Workout
## 2441                                                                                                Tekken Tag Tournament 2
## 2442                                                                                                   Ninja Gaiden Sigma 2
## 2443                                                                                                            Ratatouille
## 2444                                                                                                            NFL GameDay
## 2445                                                                                             Burnout 2: Point of Impact
## 2446                                                                                                              Wii Fit U
## 2447                                                                                                     Street Fighter EX3
## 2448                                                                                                   The Legendary Starfy
## 2449                                                                                                       NCAA Football 11
## 2450                                                                                        The House of the Dead: Overkill
## 2451                                                                                              Army of Two: The 40th Day
## 2452                                                                                                          Darksiders II
## 2453                                                                                                           Spider-Man 2
## 2454                                                                                The Lord of the Rings: War in the North
## 2455                                                                                                      Tales of Xillia 2
## 2456                                                                                           Ghostbusters: The Video Game
## 2457                                                                                                        The Incredibles
## 2458                                                                                                 Xenoblade Chronicles X
## 2459                                                                                                               NBA 2K10
## 2460                                                                                                      Petz Dogz Fashion
## 2461                                                                                                ATV Quad Power Racing 2
## 2462                                                                                                          Final Fantasy
## 2463                                                                                                                Skate 2
## 2464                                                                                       Rocket Power: Team Rocket Rescue
## 2465                                                                                                     Big Mutha Truckers
## 2466                                                                                                        The Evil Within
## 2467                                                                                                           Rogue Galaxy
## 2468                                                                                                 ESPN College Hoops 2K5
## 2469                                                                                                       NCAA Football 14
## 2470                                                                              Harry Potter and the Order of the Phoenix
## 2471                                                                                                        Sniper Elite V2
## 2472                                                                                                  Metroid: Zero Mission
## 2473                                                                                             Ben 10: Protector of Earth
## 2474                                                                                                        Burnout Legends
## 2475                                                                                                                 Q*bert
## 2476                                                                                      Blazing Angels: Squadrons of WWII
## 2477                                                                                                 Madden NFL 09 All-Play
## 2478                                                                                            Ace Combat 3: Electrosphere
## 2479                                                                                                     Dynasty Warriors 2
## 2480                                                                                                          Madden NFL 07
## 2481                                                                                                          Time Crisis 4
## 2482                                                                                                     Duke Nukem Forever
## 2483                                                                                       Lizzie McGuire 2: Lizzie Diaries
## 2484                                                                                         FIFA Soccer World Championship
## 2485                                                                                                       NCAA Football 12
## 2486                                                                                                            Brute Force
## 2487                                                                                                Tiger Woods PGA Tour 11
## 2488                                                                                            Yu-Gi-Oh! Dark Duel Stories
## 2489                                                                                             WWE SmackDown vs. Raw 2009
## 2490                                                                                                       The Game of Life
## 2491                                                                                                       Mega Man Legends
## 2492                                                                                             Sly 3: Honor Among Thieves
## 2493                                                                                                     MLB SlugFest 20-03
## 2494                                                                                                  Need for Speed: Nitro
## 2495                                                                                                Street Fighter X Tekken
## 2496                                                                                                               MediEvil
## 2497                                                                                                                 Casper
## 2498                                                                                    Sid Meier's Civilization Revolution
## 2499                                                                                                     Tales of the Abyss
## 2500                                                                                                          Dragon Age II
## 2501                                                                                         Call of Duty: Modern Warfare 3
## 2502                                                                                                        God of War Saga
## 2503                                                                                              Scooby-Doo! First Frights
## 2504                                                                                              James Bond 007: Nightfire
## 2505                                                                                               Tony Hawk's Pro Skater 3
## 2506                                                                                              Marvel: Ultimate Alliance
## 2507                                                                                                              DJ Hero 2
## 2508                                                                                      Harvest Moon: Tree of Tranquility
## 2509                                                                                        Tony Hawk's Underground 2 Remix
## 2510                                                                                          Need for Speed: Hot Pursuit 2
## 2511                                                                                                   Killer Instinct Gold
## 2512                                                                                                           Clu Clu Land
## 2513                                                                                                Karaoke Revolution Glee
## 2514                                                                                                       I Spy: Fun House
## 2515                                                                                          Amped: Freestyle Snowboarding
## 2516                                                                                                     The Price is Right
## 2517                                                                                                       Custer's Revenge
## 2518                                                                                                           Stranglehold
## 2519                                                                                            Rocket Power: Beach Bandits
## 2520                                                                                          Shin Megami Tensei: Persona 4
## 2521                                                                                            Devil May Cry HD Collection
## 2522                                                                                                           Thief (2014)
## 2523                                                                                The Lord of the Rings: War in the North
## 2524                                                                                                     Dragon Warrior III
## 2525                                                                                         Ready 2 Rumble Boxing: Round 2
## 2526                                                                                                        Dance Central 3
## 2527                                                                                                     Kamaitachi no Yoru
## 2528                                                                                                     Imagine: Rock Star
## 2529                                                                                                    Tales of Destiny II
## 2530                                                                                                      Super Bomberman 2
## 2531                                                                                                            NASCAR 2001
## 2532                                                                                                   Twisted Metal (2012)
## 2533                                                                            The Legend of Zelda: Four Swords Adventures
## 2534                                                                             Jikkyou Powerful Pro Yakyuu '99 Kaimakuban
## 2535                                                                                                 MediEvil: Resurrection
## 2536                                                                                                       Valkyrie Profile
## 2537                                                                                               Shaun White Snowboarding
## 2538                                                                                                                Patapon
## 2539                                                                                                   Final Fantasy Type-0
## 2540                                                                                                               Mega Man
## 2541                                                                                               Army Men: Sarge's Heroes
## 2542                                                                                              Pro Evolution Soccer 2010
## 2543                                                                                             Tom Clancy's Rainbow Six 3
## 2544                                                                                                          Madden NFL 25
## 2545                                                                                                       NCAA Football 10
## 2546                                                                                                             EarthBound
## 2547                                                                                                        The Next Tetris
## 2548                                                                                          Guitar Hero: Warriors of Rock
## 2549                                                                                            Battle of Giants: Dinosaurs
## 2550                                                            World Soccer Jikkyou Winning Eleven 3: World Cup France '98
## 2551                                                                                 Final Fantasy XI: Wings of the Goddess
## 2552                                                                                                             The Sims 2
## 2553                                                                                            Dragon Ball: Raging Blast 2
## 2554                                                                                                        SingStar Vol. 2
## 2555                                                                                          Who wants to be a millionaire
## 2556                                                                                                                 Yakuza
## 2557                                                                Disney's The Little Mermaid: Ariel's Undersea Adventure
## 2558                                                                             Star Wars Rogue Squadron III: Rebel Strike
## 2559                                                                                                             Moto Racer
## 2560                                                                                                      Hitman: Contracts
## 2561                                                                       Professor Layton vs Phoenix Wright: Ace Attorney
## 2562                                                                                                    Ben 10: Alien Force
## 2563                                                                                                Final Fantasy Anthology
## 2564                                                                                                                 DiRT 2
## 2565                                                                                       Prince of Persia: Warrior Within
## 2566                                                                                                          Deca Sports 2
## 2567                                                                                                    Killzone: Mercenary
## 2568                                                                                              Pro Evolution Soccer 2010
## 2569                                                                                                 Guitar Hero: Metallica
## 2570                                                                                      Final Fantasy X / X-2 HD Remaster
## 2571                                                                                                  Super Robot Taisen 伪
## 2572                                                                                          Need for Speed: Hot Pursuit 2
## 2573                                                                                         PES 2009: Pro Evolution Soccer
## 2574                                                                                             Hasbro Family Game Night 3
## 2575                                                                                                     Tales of Destiny 2
## 2576                                                                                               Capcom's Soccer Shootout
## 2577                                                                                                Rayman Raving Rabbids 2
## 2578                                                                                                       The Sims 2: Pets
## 2579                                                                                                                  Alien
## 2580                                                                                     Dragon Ball Z: Budokai Tenkaichi 2
## 2581                                                                                                 Guitar Hero: Aerosmith
## 2582                                                                              Star Wars The Clone Wars: Republic Heroes
## 2583                                                                                                            Ridge Racer
## 2584                                                                                              pro evolution soccer 2011
## 2585                                                                                         Harvest Moon: A Wonderful Life
## 2586                                                                                                   All Star Cheer Squad
## 2587                                                                                                   Momotarou Dentetsu 7
## 2588                                                                                                     DmC: Devil May Cry
## 2589                                                                                                        Motocross Mania
## 2590                                                                                     EA Sports Active NFL Training Camp
## 2591                                                                                                          Darksiders II
## 2592                                                                                                  Need for Speed Rivals
## 2593                                                                                                          [Prototype 2]
## 2594                                                                                                             Mega Man 5
## 2595                                                                                                             WCW Mayhem
## 2596                                                                                     Dance Dance Revolution SuperNOVA 2
## 2597                                                                                                         Armored Core 2
## 2598                                                                                                Dragon Quest Monsters 2
## 2599                                                                                                       The Godfather II
## 2600                                                                                                         Dragon's Dogma
## 2601                                                                                              Pro Evolution Soccer 2016
## 2602                                                                               The Amazing Spider-Man (Console Version)
## 2603                                                                         Major League Baseball Featuring Ken Griffey Jr
## 2604                                                                                                            Rare Replay
## 2605                                                                                                              Band Hero
## 2606                                                                                                       NCAA Football 08
## 2607                                                                                                       FIFA Soccer 2004
## 2608                                                                                                   The Sims 2: Castaway
## 2609                                                                                              Star Ocean: The Last Hope
## 2610                                                                                                  Sniper: Ghost Warrior
## 2611                                                                                                             Invizimals
## 2612                                                                                                        Forza Horizon 2
## 2613                                                                                                          The 7th Guest
## 2614                                                                                                               WWE 2K15
## 2615                                                                                                              Too Human
## 2616                                                                                                          Yars' Revenge
## 2617                                                                                                Tiger Woods PGA Tour 10
## 2618                                                                              Secret Agent Barbie: Royal Jewels Mission
## 2619                                                                                                                   Doom
## 2620                                                                               Tom Clancy's Splinter Cell: Double Agent
## 2621                                                                                               Buzz! The Hollywood Quiz
## 2622                                                                               Naruto Shippuden: Ultimate Ninja Storm 2
## 2623                                                                                                  Golden Sun: Dark Dawn
## 2624                                                                                                   Fight Night Champion
## 2625                                                                               Marvel vs. Capcom: Clash of Super Heroes
## 2626                                                                                                   Dead Island: Riptide
## 2627                                                                                                          Madden NFL 16
## 2628                                                                                                        Battle Stations
## 2629                                                                                Star Wars The Clone Wars: Jedi Alliance
## 2630                                                                                                The World Ends With You
## 2631                                                                                                          Drawn to Life
## 2632                                                                                    Sid Meier's Civilization Revolution
## 2633                                                                                                                NBA 2K7
## 2634                                                                               Torneko no Daibouken: Fushigi no Dungeon
## 2635                                                                                                            Jr. Pac-Man
## 2636                                                                                              James Bond 007: Nightfire
## 2637                                                                   Mario & Sonic at the Sochi 2014 Olympic Winter Games
## 2638                                                                                                Goldeneye 007: Reloaded
## 2639                                                                                                        NBA ShootOut 98
## 2640                                                                                                         Rayman Origins
## 2641                                                                                                               Galaxian
## 2642                                                                                               Aliens: Colonial Marines
## 2643                                                                                                                   Lips
## 2644                                                                                                        Andretti Racing
## 2645                                                                           Caesars Palace 2000: Millennium Gold Edition
## 2646                                                                                                               Air Raid
## 2647                                                                                                               MadWorld
## 2648                                                                                              Need for Speed: ProStreet
## 2649                                                                                                      Perfect Dark Zero
## 2650                                                                                 Marvel Nemesis: Rise of the Imperfects
## 2651                                                                                                                 Boxing
## 2652                                                                                      Need for Speed: Porsche Unleashed
## 2653                                                                                                    ABBA: You Can Dance
## 2654                                                                                                       Avatar: The Game
## 2655                                                                                  Resident Evil: Operation Raccoon City
## 2656                                                                      UFC Personal Trainer: The Ultimate Fitness System
## 2657                                                                                                        Crystal Castles
## 2658                                                                                                    Worms: Open Warfare
## 2659                                                                                                          Puzzler World
## 2660                                                                                                   Conker's Bad Fur Day
## 2661                                                                                                    Dragon Warrior I&II
## 2662                                                                             Star Wars Episode II: Attack of the Clones
## 2663                                                                                                            Ghost Squad
## 2664                                                                            Conflict: Desert Storm II - Back to Bagdhad
## 2665                                                                                                Maximo: Ghosts to Glory
## 2666                                                                                                  Donkey Kong Country 3
## 2667                                                                                                 All-Star Baseball 2003
## 2668                                                                                                         Unlimited Saga
## 2669                                                                                                           Pokemon Dash
## 2670                                                                                              Dragon Ball: Raging Blast
## 2671                                                                                                 Twisted Metal: Head On
## 2672                                                                                              Personal Trainer: Walking
## 2673                                                                                                        Sonic Unleashed
## 2674                                                                                        Cabela's Deer Hunt: 2004 Season
## 2675                                                                                                              Formula 1
## 2676                                                                                                    Tetris Party Deluxe
## 2677                                                                                            Banjo-Kazooie: Nuts & Bolts
## 2678                                                                                                                FIFA 12
## 2679                                                                                                           My Baby Girl
## 2680                                                                                                                 Driv3r
## 2681                                                                                 Mercenaries: Playground of Destruction
## 2682                                                                                           The Walking Dead: Season One
## 2683                                                                                               MTV Celebrity Deathmatch
## 2684                                                                                 Street Fighter Alpha: Warriors' Dreams
## 2685                                                                                                      ISS Pro Evolution
## 2686                                                                                             Need For Speed: Undercover
## 2687                                                                                                  Metroid Prime Hunters
## 2688                                                                                                            Bayonetta 2
## 2689                                                                                  Star Wars Battlefront: Elite Squadron
## 2690                                                                       Sonic & SEGA All-Stars Racing with Banjo-Kazooie
## 2691                                                                                               Tony Hawk's Pro Skater 2
## 2692                                                                                                       Final Fantasy II
## 2693                                                                             Taiko no Tatsujin: Tatakon de Dodon ga Don
## 2694                                                                     Mega Man Battle Network 6: Cybeast Falzar / Gregar
## 2695                                                                                                            Doom (2016)
## 2696                                                                                        Syphon Filter: The Omega Strain
## 2697                                                                                                         FIFA Soccer 11
## 2698                                                                                                             The Sims 3
## 2699                                                                                               Mortal Kombat: Deception
## 2700                                                                                                        That's So Raven
## 2701                                                                                                                DJ Hero
## 2702                                                                                            Toy Story 3: The Video Game
## 2703                                                                                 Marvel vs. Capcom 2: New Age of Heroes
## 2704                                                                                                               Portal 2
## 2705                                                                                                     Duke Nukem Forever
## 2706                                                                                      Star Wars: The Force Unleashed II
## 2707                                                                                                   Legends of Wrestling
## 2708                                                                                              True Crime: New York City
## 2709                                                                                                          Lost Planet 2
## 2710                                                                                                 Kane & Lynch: Dead Men
## 2711                                                                                               Mario & Luigi: Paper Jam
## 2712                                                                                               Final Fantasy Legend III
## 2713                                                                                 Harry Potter and the Half-Blood Prince
## 2714                                                                                                                 Wall-E
## 2715                                                                                  Professor Layton and the Azran Legacy
## 2716                                                                                        Super Monkey Ball: Touch & Roll
## 2717                                                                                                            Mega Man X5
## 2718                                                              Nintendo Presents: New Style Boutique 2 - Fashion Forward
## 2719                                                                                                            Titanfall 2
## 2720                                                                                               Genji: Days of the Blade
## 2721                                                                                   Metal Gear Solid V: The Phantom Pain
## 2722                                                                                   Rockstar Games presents Table Tennis
## 2723                                                                                        Drawn to Life: The Next Chapter
## 2724                                                                                             PokePark 2: Wonders Beyond
## 2725                                                                                                              DJ Hero 2
## 2726                                                                                             WWE SmackDown vs. Raw 2009
## 2727                                                                                         LEGO Batman 2: DC Super Heroes
## 2728                                                                                                          SoulCalibur V
## 2729                                                                                                             Shark Tale
## 2730                                                                                     San Francisco Rush: Extreme Racing
## 2731                                                                                                     Zone of the Enders
## 2732                                                                                           Street Fighter EX Plus Alpha
## 2733                                                                                                 Kane & Lynch: Dead Men
## 2734                                                                                                             Deer Drive
## 2735                                                                                              Pro Evolution Soccer 2015
## 2736                                                                                              Tony Hawk's Underground 2
## 2737                                                                                                          Madden NFL 06
## 2738                                                                                                                We Sing
## 2739                                                                                         Raving Rabbids: Travel in Time
## 2740                                                                          Capcom vs. SNK 2: Mark of the Millennium 2001
## 2741                                                                                                   MVP 06 NCAA Baseball
## 2742                                                                                                                  Turok
## 2743                                                                                      Final Fantasy XIV: A Realm Reborn
## 2744                                                                                                             Coded Arms
## 2745                                                                         Final Fantasy Tactics A2: Grimoire of the Rift
## 2746                                                                                                    Jump Ultimate Stars
## 2747                                                                                                    Jampack Summer 2001
## 2748                                                                                        The Lord of the Rings: Conquest
## 2749                                                                                                              Band Hero
## 2750                                                                                                                Burnout
## 2751                                                                                                             Spectrobes
## 2752                                                                                               Rhythm Heaven: The Best+
## 2753                                                                                        Yu-Gi-Oh! Dungeon Dice Monsters
## 2754                                                                                                       The Godfather II
## 2755                                                                                               Mortal Kombat: Unchained
## 2756                                                                                                  Need for Speed: Shift
## 2757                                                                                                          Dark Souls II
## 2758                                                                                                 Sega Superstars Tennis
## 2759                                                                                          Assassin's Creed: Revelations
## 2760                                                                                        Final Fantasy X/X-2 HD Remaster
## 2761                                                                                                          [Prototype 2]
## 2762                                                                                           Midnight Club 3: DUB Edition
## 2763                                                                                             Resident Evil: Revelations
## 2764                                                                                        Tom Clancy's Rainbow Six: Vegas
## 2765                                                                                  The Lord of the Rings: The Two Towers
## 2766                                                                                              Tiger Woods PGA Tour 2001
## 2767                                                         Dragon Quest Heroes: The World's Tree Woe and the Blight Below
## 2768                                                                                                 Red Faction: Guerrilla
## 2769                                                                                            The Elder Scrolls V: Skyrim
## 2770                                                                                                             Jet Moto 3
## 2771                                                                                            Ace Combat: Assault Horizon
## 2772                                                                             X-Men Origins: Wolverine - Uncaged Edition
## 2773                                                                                                    Unreal Championship
## 2774                                                                                                    WarioWare: Twisted!
## 2775                                                                                           Lego Batman 3: Beyond Gotham
## 2776                                                                                                               Crysis 2
## 2777                                                                                                      Tales of Vesperia
## 2778                                                                                                       MLB 13: The Show
## 2779                                                                                               LEGO Marvel Super Heroes
## 2780                                                                                                     Namco Museum Remix
## 2781                                                                                                               NBA 2K16
## 2782                                                                                                          Sword of Mana
## 2783                                                                                                                FIFA 17
## 2784                                                                                            Marvel: Ultimate Alliance 2
## 2785                                                                                                Dragon Age: Inquisition
## 2786                                                                                                      Resonance of Fate
## 2787                                                                                            Madagascar: Escape 2 Africa
## 2788                                                                               Pirates of the Caribbean: At World's End
## 2789                                                                                             FIFA: Road to World Cup 98
## 2790                                                                               The Amazing Spider-Man (Console Version)
## 2791                                                                                           Dragon Ball Z: Ultime Menace
## 2792                                                                                           The Walking Dead: Season One
## 2793                                                                                                Tiger Woods PGA Tour 08
## 2794                                                                                        Classic NES Series: Donkey Kong
## 2795                                                                                            Harvest Moon: Animal Parade
## 2796                                                                                                           Split/Second
## 2797                                                                                                                  Yoshi
## 2798                                                                                                        Mortal Kombat 4
## 2799                                                                                             WWE SmackDown vs. Raw 2010
## 2800                                                                                              Style Savvy: Trendsetters
## 2801                                                                                                                 Croc 2
## 2802                                                                                                   Final Fantasy XIII-2
## 2803                                                                                                      Practise English!
## 2804                                                                                              Oddworld: Munch's Oddysee
## 2805                                                                                                       Persona 4: Arena
## 2806                                                                                                                Berzerk
## 2807                                                                                                                  Brink
## 2808                                                                                                                 NHL 11
## 2809                                                                                                       NCAA Football 07
## 2810                                                                                                         Just Dance Wii
## 2811                                                                                                  Full Spectrum Warrior
## 2812                                                                                                 LEGO Marvel's Avengers
## 2813                                                                                                        Katamari Damacy
## 2814                                                                                                        Just Dance 2015
## 2815                                                                                   Beyblade VForce: Ultimate Blader Jam
## 2816                                                                                                        LEGO Dimensions
## 2817                                                                     Naruto Shippuden: Ultimate Ninja Storm Generations
## 2818                                                                                         Shaun Palmer's Pro Snowboarder
## 2819                                                                                       James Bond 007: Agent Under Fire
## 2820                                                                                   Harvest Moon DS: Island of Happiness
## 2821                                                                             Star Wars Episode III: Revenge of the Sith
## 2822                                                                                                    Ultimate Spider-Man
## 2823                                                                                                       Monopoly Streets
## 2824                                                                                             Imagine: Interior Designer
## 2825                                                                                             Ratchet & Clank Collection
## 2826                                                                                                 SD Gundam G Generation
## 2827                                                                                                        Rabbids Go Home
## 2828                                                                                                              God Eater
## 2829                                                                                                                Area 51
## 2830                                                                                                     Total War: Rome II
## 2831                                                                                                            NBA Live 08
## 2832                                                                                Star Ocean: The Last Hope International
## 2833                                                                                                         Dead to Rights
## 2834                                                                                   Indiana Jones and the Staff of Kings
## 2835                                                                                                Tiger Woods PGA Tour 07
## 2836                                                                                     My Little Pony: Pinkie Pie's Party
## 2837                                                                                                           Test Drive 6
## 2838                                                                                              Major League Baseball 2K7
## 2839                                                                                                Kouchuu Ouja Mushi King
## 2840                                                                                     Persona Q: Shadow of the Labyrinth
## 2841                                                                                                       MLB 14: The Show
## 2842                                                                                                X-Men: Mutant Academy 2
## 2843                                                                                                    Kirby: Canvas Curse
## 2844                                                                                                    Jampack Winter 2001
## 2845                                                                                                               Kangaroo
## 2846                                                                                                          Madden NFL 10
## 2847                                                                                                       MLB 09: The Show
## 2848                                                                                            Borderlands: The Pre-Sequel
## 2849                                                                                                    Disney Infinity 3.0
## 2850                                                                                                          Madden NFL 11
## 2851                                                                                                  Super Monkey Ball Jr.
## 2852                                                                                               The Witcher 3: Wild Hunt
## 2853                                                                                                                F1 2011
## 2854                                                                                Mobile Suit Gundam: Encounters in Space
## 2855                                                                                                       MLB 10: The Show
## 2856                                                                                                      MX vs. ATV Reflex
## 2857                                                                                                                   Blur
## 2858                                                                                                       Avatar: The Game
## 2859                                                                                                            Fear Effect
## 2860                                                                                             Battlefield: Bad Company 2
## 2861                                                                                                                 DiRT 3
## 2862                                                                                  The Lord of the Rings: The Two Towers
## 2863                                                                                                        Madden NFL 2003
## 2864                                                                                                                  Skate
## 2865                                                                                                                 iCarly
## 2866                                                                                                    XCOM: Enemy Unknown
## 2867                                                                                             Ben 10: Protector of Earth
## 2868                                                                                            Virtua Fighter 4: Evolution
## 2869                                                                                                                 Crysis
## 2870                                                                                                Resident Evil: Survivor
## 2871                                                                                                   The Sims 2: Castaway
## 2872                                                                                                    Super Trucks Racing
## 2873                                                                                   Godzilla: Destroy All Monsters Melee
## 2874                                                                                         Jeremy McGrath Supercross 2000
## 2875                                                                                              Conker: Live And Reloaded
## 2876                                                                                                          Silent Hill 3
## 2877                                                                                       Yu-Gi-Oh! The Falsebound Kingdom
## 2878                                                                                             Spyro: Enter the Dragonfly
## 2879                                                                                       Scooby-Doo 2: Monsters Unleashed
## 2880                                                                                            Power Rangers: Dino Thunder
## 2881                                                                                                          Madden NFL 08
## 2882                                                                                                            Blast Corps
## 2883                                                                                                            LEGO Racers
## 2884                                                                                                           WWF Attitude
## 2885                                                                                    Tactics Ogre: Let Us Cling Together
## 2886                                                                                                          Madden NFL 09
## 2887                                                                                      WarioWare, Inc.: Mega Party Game$
## 2888                                                                                                            NBA Live 09
## 2889                                                                                               Battle Arena Toshinden 2
## 2890                                                                                               Dragon Ball: Xenoverse 2
## 2891                                                                                                     Dynasty Warriors 6
## 2892                                                                                                              Jeopardy!
## 2893                                                                                                             South Park
## 2894                                                                                                       NCAA Football 09
## 2895                                                                                           Doom 3: Resurrection of Evil
## 2896                                                                                                                    SSX
## 2897                                                         Dragon Quest Swords: The Masked Queen and the Tower of Mirrors
## 2898                                                                                                             Two Worlds
## 2899                                                                                                Tony Hawk's Underground
## 2900                                                                                                           Spider-Man 2
## 2901                                                                                                      Super Bomberman 3
## 2902                                                                                                       NCAA Football 08
## 2903                                                                               Command & Conquer: Red Alert Retaliation
## 2904                                                                                                  Skylanders: Trap Team
## 2905                                                                                                     Star Wars: Obi-Wan
## 2906                                                                           Ace Attorney Investigations: Miles Edgeworth
## 2907                                                                                                            Kill.Switch
## 2908                                                                                                              Catherine
## 2909                                                                                                        Madden NFL 2005
## 2910                                                                                                            F-14 Tomcat
## 2911                                                                                                             SplashDown
## 2912                                                                                                       NCAA Football 98
## 2913                                                                                                            Jade Empire
## 2914                                                                                                   Infinite Undiscovery
## 2915                                                                                                         FIFA Soccer 11
## 2916                                                                                                    Chocobo's Dungeon 2
## 2917                                                                                                   Call of Duty: Ghosts
## 2918                                                                                      Lego Star Wars: The Force Awakens
## 2919                                                                                                                 NHL 12
## 2920                                                                                                           Advance Wars
## 2921                                                                                                            NASCAR 2001
## 2922                                                                                                     NCAA Football 2001
## 2923                                                                                             WWE SmackDown vs. Raw 2011
## 2924                                                                                                                  Mafia
## 2925                                                                                              Hannah Montana: The Movie
## 2926                                                                                               Ape Escape: On the Loose
## 2927                                                                                  Mobile Suit Gundam: Journey to Jaburo
## 2928                                                                                                       MLB 08: The Show
## 2929                                                                                                        TimeSplitters 2
## 2930                                                                                              Omerta: City of Gangsters
## 2931                                                                                                  Driver: San Francisco
## 2932                                                                    Classic NES Series: Zelda II: The Adventure of Link
## 2933                                                                                            Fire Emblem: Monsh? no Nazo
## 2934                                                                                                Disney's Chicken Little
## 2935                                                                                            James Bond 007: Blood Stone
## 2936                                                                                                              King Kong
## 2937                                                                                                  Minecraft: Story Mode
## 2938                                                                                                           Moto Racer 2
## 2939                                                                                    Metal Gear Solid: Portable Ops Plus
## 2940                                                                                                         LEGO Rock Band
## 2941                                                                                                     Monster Hunter Tri
## 2942                                                                                            Halo 2 Multiplayer Map Pack
## 2943                                                                                           Mortal Kombat: Shaolin Monks
## 2944                                                     Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 2945                                                                                                  Minecraft: Story Mode
## 2946                                                                                                         FIFA Soccer 13
## 2947                                                                                               The LEGO Movie Videogame
## 2948                                                                                                           MotionSports
## 2949                                                                                      MX vs. ATV Unleashed: On the Edge
## 2950                                                                                                     Mario Pinball Land
## 2951                                                                                                                  Mappy
## 2952                                                                                            J-League Soccer: Prime Goal
## 2953                                                                                                 Dragon Ball Z: Budokai
## 2954                                                                                                             NFL Xtreme
## 2955                                                                                                  Need for Speed (2015)
## 2956                                                                                     Plants vs. Zombies: Garden Warfare
## 2957                                                                                                  Need for Speed Rivals
## 2958                                                                                             The Sims 2: Apartment Pets
## 2959                                                                                Harry Potter and the Chamber of Secrets
## 2960                                                                                  Prince of Persia: The Forgotten Sands
## 2961                                                                             X-Men Origins: Wolverine - Uncaged Edition
## 2962                                                                          The Lord of the Rings: The Return of the King
## 2963                                                                                                     The Sims: Medieval
## 2964                                                                                         LEGO Batman 2: DC Super Heroes
## 2965                                                                                                             Top Spin 4
## 2966                                                                                                        Shrek the Third
## 2967                                                                                        Baldur's Gate: Dark Alliance II
## 2968                                                                                                             Shark Tale
## 2969                                                                                          IL-2 Sturmovik: Birds of Prey
## 2970                                                                                                 Test Drive Unlimited 2
## 2971                                                                                       Star Wars: Masters of Teras Kasi
## 2972                                                                                                           World of Zoo
## 2973                                                                                                      NBA Street Vol. 2
## 2974                                                                                                              Minecraft
## 2975                                                                                                     MX vs. ATV Untamed
## 2976                                                                                                       The Last Remnant
## 2977                                                                                                     NCAA Football 2005
## 2978                                                                                    Mortal Kombat Mythologies: Sub-Zero
## 2979                                                                                                     The Sly Collection
## 2980                                                                                                 Naruto: Clash of Ninja
## 2981                                                                                                         Sniper Elite 3
## 2982                                                                                      Prince of Persia: The Two Thrones
## 2983                                                                                             Hot Shots Golf: Open Tee 2
## 2984                                                                                 Mercenaries: Playground of Destruction
## 2985                                                                                                        Bushido Blade 2
## 2986                                                                                                            Suikoden II
## 2987                                                                                                               Iron Man
## 2988                                                                                                         FIFA Soccer 06
## 2989                                                                                                       Fight Night 2004
## 2990                                                                              Tourist Trophy: The Real Riding Simulator
## 2991                                                                                                 .hack//Mutation Part 2
## 2992                                                                                             Wolfenstein: The New Order
## 2993                                                                                      Cars: Mater-National Championship
## 2994                                                                                           LEGO Harry Potter: Years 1-4
## 2995                                                                                              Midway Arcade Treasures 2
## 2996                                                                              Kirby's Dream Collection: Special Edition
## 2997                                                                             Return to Castle Wolfenstein: Tides of War
## 2998                                                                                                                   RIFT
## 2999                                                                                                           Spider-Man 3
## 3000                                                                                                           Street Sk8er
## 3001                                                                                                            Mass Effect
## 3002                                                                                                  Contra: Legacy of War
## 3003                                                                                                 Fight Night Round 2004
## 3004                                                                                                         Book of Spells
## 3005                                                   Zaidan Houjin Nippon Kanji Nouryoko Kentei Kyoukai Kounin: KanKen DS
## 3006                                                                                                            Spice World
## 3007                                                                                                        The Evil Within
## 3008                                                                                                         Armored Core 3
## 3009                                                                                           Star Wars: Republic Commando
## 3010                                                                                                  Taiko no Tatsujin Wii
## 3011                                                              London 2012: The Official Video Game of the Olympic Games
## 3012                                                                                               The LEGO Movie Videogame
## 3013                                                                                                                  Turok
## 3014                                                                                                            Wild ARMs 2
## 3015                                                                                                               Terraria
## 3016                                                                                                              Red Steel
## 3017                                                                          Summer Sports: Paradise Island (Others sales)
## 3018                                                                                      Need for Speed: Shift 2 Unleashed
## 3019                                                                               The Fairly Odd Parents: Breakin Da Rules
## 3020                                                                          Virtua Tennis: World Tour (US & Others sales)
## 3021                                                                                                  Unreal Tournament III
## 3022                                                                                                     Adventures of Tron
## 3023                                                                                             Fossil Fighters: Champions
## 3024                                                                                                             The Sims 3
## 3025                                                         The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 3026                                                                                                         Disney Tangled
## 3027                                                                                         Command & Conquer: Red Alert 3
## 3028              Zaidan Houjin Nippon Kanji Nouryoku Kentei Kyoukai Koushiki Soft: 200 Mannin no KanKen: Tokoton Kanji Nou
## 3029                                                                                              Pro Pinball: Big Race USA
## 3030                                                                                                             NFL Street
## 3031                                                                        Final Fantasy Crystal Chronicles: Ring of Fates
## 3032                                                                                               Bakugan: Battle Brawlers
## 3033                                                                                      Blazing Angels: Squadrons of WWII
## 3034                                                                                             WWE SmackDown vs. RAW 2007
## 3035                                                                                                  Skylanders: Trap Team
## 3036                                                                                                                F1 2015
## 3037                                                                                             Tony Hawk's Proving Ground
## 3038                                                                                                           The Darkness
## 3039                                                                                                          Country Dance
## 3040                                                                                                               MLB 2004
## 3041                                                                                     Naruto Shippuden: Ultimate Ninja 4
## 3042                                                                                        The Sims 3: High-End Loft Stuff
## 3043                                                                                              Tiger Woods PGA Tour 2000
## 3044                                                                                                              Darkstone
## 3045                                                                                                NCAA March Madness 2003
## 3046                                                                                                             Diablo III
## 3047                                                                                                           Finding Nemo
## 3048                                                                                                            Thrillville
## 3049                                                                                                             Lalaloopsy
## 3050                                                                                Jikkyou World Soccer 2000 Final Edition
## 3051                                                                                                             Madagascar
## 3052                                                                                           Castlevania: Lords of Shadow
## 3053                                                                                        Hidden Objects: Mystery Stories
## 3054                                                                                                                 NHL 10
## 3055                                                                                                      100 Classic Books
## 3056                                                                                                    Puzzler Brain Games
## 3057                                                                                                     TV Show King Party
## 3058                                                                                   Dragon Quest Monsters: Caravan Heart
## 3059                                                                             Strawberry Shortcake: Summertime Adventure
## 3060                                                                                  Street Fighter Anniversary Collection
## 3061                                                                                                       Legend of Legaia
## 3062                                                                                                                 NHL 13
## 3063                                                                                                    Napoleon: Total War
## 3064                                                                                                      Metro: Last Light
## 3065                                                                                                          Madden NFL 10
## 3066                                                                                                         Rayman Legends
## 3067                                                                                                  The Sims: Bustin' Out
## 3068                                                                                                      BioShock Infinite
## 3069                                                                                                        Keystone Kapers
## 3070                                                                                                            Ratatouille
## 3071                                                                                                      Lollipop Chainsaw
## 3072                                                                                                    Tom Clancy's EndWar
## 3073                                                                                            Shrek: Hassle at the Castle
## 3074                                                                                                            Suikoden IV
## 3075                                                                                                       Gods Eater Burst
## 3076                                                                                     Fist of the North Star: Ken's Rage
## 3077                                                                                     Plants vs. Zombies: Garden Warfare
## 3078                                                                              Disney's Kim Possible 2: Drakken's Demise
## 3079                                                                                           One Piece: Pirate Warriors 2
## 3080                                                                                                        Um Jammer Lammy
## 3081                                                                                      Brothers In Arms: Road to Hill 30
## 3082                                                                                           LEGO Harry Potter: Years 5-7
## 3083                                                                                Taiko no Tatsujin DS: Touch de Dokodon!
## 3084                                                                                               Animaniacs Ten Pin Alley
## 3085                                                                                                    LEGO Jurassic World
## 3086                                                                                                          Kung Fu Panda
## 3087                                                                                                           Freedom Wars
## 3088                                                                                                         Rocksmith 2014
## 3089                                                                  Club Penguin: Elite Penguin Force - Herbert's Revenge
## 3090                                                                                        Ratchet & Clank: Into the Nexus
## 3091                                                                                               Shaun White Snowboarding
## 3092                                                                                                        Radiata Stories
## 3093                                                                                           The Biggest Loser: Challenge
## 3094                                                                                               Peppa Pig: Fun and Games
## 3095                                                                                                              F-Zero GX
## 3096                                                                                                Disney's Chicken Little
## 3097                                                                                             Scene It? Box Office Smash
## 3098                                                                                                      Yoshi Topsy-Turvy
## 3099                                                                                       Monster Jam: Maximum Destruction
## 3100                                                     Cartoon Network Block Party / Cartoon Network Speedway Double Pack
## 3101                                                                                                Tiger Woods PGA Tour 09
## 3102                                                                       World of Dragon Warrior - Torneko: The Last Hope
## 3103                                                                                                          Mortal Kombat
## 3104                                                         Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 3105                                                                                                Tiger Woods PGA Tour 09
## 3106                                                                                      Advance Wars 2: Black Hole Rising
## 3107                                                                                              Wario: Master of Disguise
## 3108                                                                                                              Centipede
## 3109                                                                                                         The Last Story
## 3110                                                                                                             Drakengard
## 3111                                                                                                      SingStar Pop Hits
## 3112                                                                                                         Kung-Fu Master
## 3113                                                                                              Champions: Return to Arms
## 3114                                                                                    Harry Potter and the Goblet of Fire
## 3115                                                                                            Toy Story 3: The Video Game
## 3116                                                                                                           SingStar R&B
## 3117                                                                             Mary-Kate and Ashley: Magical Mystery Mall
## 3118                                                                                                     MX vs. ATV Untamed
## 3119                                                                               Disney Infinity 2.0: Marvel Super Heroes
## 3120                                                                                                Tiger Woods PGA Tour 10
## 3121                                                                                                 007: Quantum of Solace
## 3122                                                                                              Super Robot Taisen Impact
## 3123                                                                                                                 Wall-E
## 3124                                                                                                   Farming Simulator 17
## 3125                                                                                                          Crafting Mama
## 3126                                                       Meccha! Taiko no Tatsujin Master DS: 7-tsu no Shima no Daibouken
## 3127                                                                                                         God of War III
## 3128                                                                                                          Borderlands 2
## 3129                                                                                 Harry Potter and the Half-Blood Prince
## 3130                                                                                Crash Bandicoot Purple: Ripto's Rampage
## 3131                                                                                        Assassin's Creed IV: Black Flag
## 3132                                                                                             Need For Speed: Undercover
## 3133                                                                                                   Spyro: A Hero's Tail
## 3134                                                                                                      Crash: Twinsanity
## 3135                                                                                               The LEGO Movie Videogame
## 3136                                                                                     Max Payne 2: The Fall of Max Payne
## 3137                                                                                   Metal Gear Solid V: The Phantom Pain
## 3138                                                                                        Drawn to Life: The Next Chapter
## 3139                                                                                                 GoldenEye: Rogue Agent
## 3140                                                                                                               WWE 2K15
## 3141                                                                                                  Paws & Claws: Pet Vet
## 3142                                                                                            Star Ocean: First Departure
## 3143                                                                                  James Bond 007: Everything or Nothing
## 3144                                                                                                X2: Wolverine's Revenge
## 3145                                                                                                            NBA Live 06
## 3146                                                                                               Tom Clancy's Rainbow Six
## 3147                                                                                                            Castlevania
## 3148                                                                                             Rayman 2: The Great Escape
## 3149                                                                  Nicktoons Collection: Game Boy Advance Video Volume 1
## 3150                                                                                                              Rayman 3D
## 3151                                                                                                  Football Manager 2014
## 3152                                                                                               New Play Control! Pikmin
## 3153                                                                                                        TimeSplitters 2
## 3154                                                                                               Onimusha: Dawn of Dreams
## 3155                                                                                         Sengoku Basara: Samurai Heroes
## 3156                                                                                                     Stuntman: Ignition
## 3157                                                                                               Real Heroes: Firefighter
## 3158                                                                                                           Dishonored 2
## 3159                                                                                                                     Up
## 3160                                                                 SpongeBob SquarePants: Game Boy Advance Video Volume 1
## 3161                                                                             Konami Collector's Series: Arcade Advanced
## 3162                                                                                                               The Crew
## 3163                                                                                            Dragon Ball: Raging Blast 2
## 3164                                                                                               Jampack Volume 13 (RP-T)
## 3165                                                                                                        Madden NFL 2001
## 3166                                                                                                          Cruis'n World
## 3167                                                                                                                 NHL 13
## 3168                                                                                                        Dead or Alive 5
## 3169                                                                                                                 Evolve
## 3170                                                                        Lemony Snicket's A Series of Unfortunate Events
## 3171                                                                                         Lost Planet: Extreme Condition
## 3172                                                                                   X-Men Legends II: Rise of Apocalypse
## 3173                                                                                                    Nightmare Creatures
## 3174                                                                                                      LittleBigPlanet 3
## 3175                                                                                                         SingStar Queen
## 3176                                                                                LEGO Star Wars II: The Original Trilogy
## 3177                                                                                             Disney Sing It: Party Hits
## 3178                                                                                          Dragon Quest Monsters Joker 3
## 3179                                                                                                            Rock Band 3
## 3180                                                                                                          Dragon Age II
## 3181                                                                                              Tony Hawk's Pro Skater 2x
## 3182                                                                                                            NBA Live 08
## 3183                                                                                                         Sim Theme Park
## 3184                                                                                                       FIFA Soccer 2003
## 3185                                                                      Taiko no Tatsujin: Chibi Dragon to Fushigi na Orb
## 3186                                                                                        The Lord of the Rings: Conquest
## 3187                                                                                                              Far Cry 4
## 3188                                                                                                       Monster Hunter 2
## 3189                                                                                          NASCAR 06: Total Team Control
## 3190                                                                                                                   Dogz
## 3191                                                                                                           A Bug's Life
## 3192                                                                                                   Super Castlevania IV
## 3193                                                                                                               Iron Man
## 3194                                                                                             White Knight Chronicles II
## 3195                                                                                  Mobile Suit Z Gundam: AEUG vs. Titans
## 3196                                                                                            Juiced 2: Hot Import Nights
## 3197                                                                                                            Wolfenstein
## 3198                                                                                    The Walking Dead: Survival Instinct
## 3199                                                                                                The Sims 3: Generations
## 3200                                                                                                           Ape Escape 2
## 3201                                                                                                         Rocksmith 2014
## 3202                                                                                                                  X-Man
## 3203                                                                                                        Sega Rally Revo
## 3204                                                                                      Shin Megami Tensei: Persona 3 FES
## 3205                                                                                                       FIFA Soccer 2002
## 3206                                                                                                    Angry Birds Trilogy
## 3207                                                                                        Final Fantasy VII International
## 3208                                                                                                 Condemned 2: Bloodshot
## 3209                                                                                                                  Okami
## 3210                                                                                 Shin Megami Tensei: Persona 3 Portable
## 3211                                                                                                    Crash of the Titans
## 3212                                                                                                               NHL 2001
## 3213                                                                                                               Crysis 3
## 3214                                                                                         Buzz Lightyear of Star Command
## 3215                                                                                                                 NHL 16
## 3216                                                                                                           Namco Museum
## 3217                                                     Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 3218                                                                                        Cabela's Big Game Hunter (2008)
## 3219                                                                                                  Tony Hawk's Project 8
## 3220                                                                                           Ghostbusters: The Video Game
## 3221                                                                                                    XCOM: Enemy Unknown
## 3222                                                                                             Nobunaga no Yabou: Haouden
## 3223                                                                                                             Virtua Cop
## 3224                                                                                          Metal Gear Solid 2: Substance
## 3225                                                                                         Tony Hawk's American Wasteland
## 3226                                                                                                      WWF in Your House
## 3227                                                                                                            Wild ARMs 3
## 3228                                                                                                       NBA ShootOut '97
## 3229                                                                                              Family Feud: 2010 Edition
## 3230                                                                                                          Madden NFL 07
## 3231                                                                                                    LEGO Jurassic World
## 3232                                                                                                             Battlezone
## 3233                                                                                              Tiger Woods PGA Tour 2004
## 3234                                                                                                 Test Drive Unlimited 2
## 3235                                                                                             Tak 2: The Staff of Dreams
## 3236                                                                                                           Just Dance 3
## 3237                                                                          LEGO Pirates of the Caribbean: The Video Game
## 3238                                                                                               Donkey Kong Barrel Blast
## 3239                                                                                              The Princess and the Frog
## 3240                                                                               Disney Infinity 2.0: Marvel Super Heroes
## 3241                                                                                                          Viewtiful Joe
## 3242                                                                                             The Urbz: Sims in the City
## 3243                                                                                               Beetle Adventure Racing!
## 3244                                                                                                 Guitar Hero: Metallica
## 3245                                                                         Disney's 102 Dalmatians: Puppies to the Rescue
## 3246                                                                                                   Strike Force Bowling
## 3247                                                                                                              Halloween
## 3248                                                                                                            Red Steel 2
## 3249                                                                                                           Bass Landing
## 3250                                                                                     XGRA: Extreme G-Racing Association
## 3251                                                                                                              Mafia III
## 3252                                                                                                                   Bolt
## 3253                                                                                                        Mario's Picross
## 3254                                                                                         Pac-Man Player's Choice Bundle
## 3255                                                                                                       Fighters MEGAMiX
## 3256                                                                                                         Bahamut Lagoon
## 3257                                                                                  Prince of Persia: The Forgotten Sands
## 3258                                                                                                      Warriors Orochi 3
## 3259                                                                              Tomb Raider III: Adventures of Lara Croft
## 3260                                                                                                              DJ Hero 2
## 3261                                                                                                Toshochu: Run for Money
## 3262                                                                            Dragon Quest Monsters: Joker 2 Professional
## 3263                                                                                                NFL Quarterback Club 99
## 3264                                                                                           Super Robot Taisen 伪 Gaiden
## 3265                                                                                   Tiger Woods PGA Tour 12: The Masters
## 3266                                                                                              Battle of Giants: Dragons
## 3267                                                                                                                 Wall-E
## 3268                                                                                                       Start the Party!
## 3269                                                                                        Formula 1: Championship Edition
## 3270                                                                                 Harry Potter and the Half-Blood Prince
## 3271                                                                                                                   NieR
## 3272                                                                                             2014 FIFA World Cup Brazil
## 3273                                                                 Phoenix Wright: Ace Attorney - Trials and Tribulations
## 3274                                                                                                                NBA 2K9
## 3275                                                                                      SpongeBob's Atlantis SquarePantis
## 3276                                                                                         SingStar Singalong With Disney
## 3277                                                                                                         NFL Fever 2003
## 3278                                                                                                     Samurai Warriors 2
## 3279                                                                                                                    Wet
## 3280                                                                                         Cooking Mama 4: Kitchen Magic!
## 3281                                                                                               Scribblenauts: Unlimited
## 3282                                                                                         The Black Eyed Peas Experience
## 3283                                                                            2 Games in 1: Sonic Battle & ChuChu Rocket!
## 3284                                                                                             Fire Emblem: Shadow Dragon
## 3285                                                                                     Plants vs. Zombies: Garden Warfare
## 3286                                                                                                 Metroid Prime: Trilogy
## 3287                                                                                                    Robotech: Battlecry
## 3288                                                                                         Dora the Explorer: Super Spies
## 3289                                                                                                        Disney Universe
## 3290                                                                                             Advance Wars: Days of Ruin
## 3291                                                                                      Jak and Daxter: The Lost Frontier
## 3292                                                                                                   Texas Hold 'Em Poker
## 3293                                                                                                          Time Crisis 3
## 3294                                                                                             WWE SmackDown vs. Raw 2010
## 3295                                                                                                               Vanquish
## 3296                                                                                         Ganbaru Watashi no Kakei Diary
## 3297                                                                                                               Tearaway
## 3298                                                                                                         Small Soldiers
## 3299                                                                                                            Half-Life 2
## 3300                                                                                             Duke Nukem: Total Meltdown
## 3301                                                                                                        Tony Hawk: RIDE
## 3302                                                                                            Borderlands: The Pre-Sequel
## 3303                                                                                              Major League Baseball 2K8
## 3304                                                                                                 Sacred 2: Fallen Angel
## 3305                                                                                              pro evolution soccer 2011
## 3306                                                                                              Major League Baseball 2K9
## 3307                                                                                               Final Fantasy IV Advance
## 3308                                                                                      Dragon Ball Z: Ultimate Tenkaichi
## 3309                                                                                                        Madden NFL 2003
## 3310                                                                                                     Tomb Raider (2013)
## 3311                                                                                                        Petz: Dogz Pack
## 3312                                                                                    Harry Potter and the Goblet of Fire
## 3313                                                                                                 Tomb Raider Chronicles
## 3314                                                                                              Dragon Ball Z: Buu's Fury
## 3315                                                                                                        Madden NFL 2002
## 3316                                                                                          Spider-Man: Mysterio's Menace
## 3317                                                                                                        Madden NFL 2000
## 3318                                                                                                 Game & Watch Gallery 4
## 3319                                                                                                          MySims Racing
## 3320                                                                                                 Naruto: Ultimate Ninja
## 3321                                                                                                          Pac-Man Party
## 3322                                                                                           Cabela's Monster Buck Hunter
## 3323                                                                                                Tony Hawk's Underground
## 3324                                                                                                          Dark Souls II
## 3325                                                                                                         Monster Trucks
## 3326                                                                                                           World of Zoo
## 3327                                                                                                    Shadow The Hedgehog
## 3328                                                                                                  Wave Race: Blue Storm
## 3329                                                                                               Aliens: Colonial Marines
## 3330                                                                             Backyard Wrestling: Don't Try This at Home
## 3331                                                                                                     Yakuza: Dead Souls
## 3332                                                                                                    Fight Night Round 2
## 3333                                                                                      MonHun Nikki: Poka Poka Ailu Mura
## 3334                                                                                                   Dead Island: Riptide
## 3335                                                                                                        Just Dance 2015
## 3336                                                                                                   Kinect Sports Rivals
## 3337                                                                                                                NBA 2K8
## 3338                                                                                                     Dynasty Warriors 8
## 3339                                                                                                               Suikoden
## 3340                                                                                                        Disney Infinity
## 3341                                                                                                     Secret Agent Clank
## 3342                                                                                         Call of Juarez: Bound in Blood
## 3343                                                                                                       Fighters Uncaged
## 3344                                                                                                           Rayman Arena
## 3345                                                                                                         Jaws Unleashed
## 3346                                                                                                          Puyo Puyo Sun
## 3347                                                                                                              Half-Life
## 3348                                                                                      International Superstar Soccer 64
## 3349                                                                                                  Mickey's Speedway USA
## 3350                                                                                                       NASCAR Heat 2002
## 3351                                                                                                           Split/Second
## 3352                                                                                                     The Golden Compass
## 3353                                                                                                     The Golden Compass
## 3354                                                         Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 3355                                                                            From TV Animation One Piece: Grand Battle 2
## 3356                                                                                                BeatMania Append 3rdMix
## 3357                                                                                              Muramasa: The Demon Blade
## 3358                                                                        Disney TH!NK Fast: The Ultimate Trivia Showdown
## 3359                                                                                                   Frozen: Olaf's Quest
## 3360                                                                                                 Xena: Warrior Princess
## 3361                                                                                              Littlest Pet Shop: Garden
## 3362                                                                                                                  Okami
## 3363                                                                                             New Play Control! Pikmin 2
## 3364                                                                                                        LEGO The Hobbit
## 3365                                                                                                          Front Mission
## 3366                                                                                                               WWE 2K17
## 3367                                                                                                        Just Dance 2014
## 3368                                                                              New Play Control! Donkey Kong Jungle Beat
## 3369                                                                                                      Wipeout: The Game
## 3370                                                                                                       Avatar: The Game
## 3371                                                                                                                 NHL 15
## 3372                                                                                                    Total War: Shogun 2
## 3373                                                                                              Major League Baseball 2K7
## 3374                                                                                         Dai-2-Ji Super Robot Taisen 伪
## 3375                                                                                         PGR3 - Project Gotham Racing 3
## 3376                                                                                                Dragon Age: Inquisition
## 3377                                                                                                             SimCity DS
## 3378                                                                                                     New Carnival Games
## 3379                                                                                      Hot Wheels: Stunt Track Challenge
## 3380                                                                                              Littlest Pet Shop: Jungle
## 3381                                                                      Dai-3-Ji Super Robot Taisen 伪: Shuuen no Ginga e
## 3382                                                                                                                FIFA 15
## 3383                                                                             Jikkyou Powerful Pro Yakyuu '97 Kaimakuban
## 3384                                                                                                               Monopoly
## 3385                                                                                                        Tony Hawk: RIDE
## 3386                                                                                                             CyberTiger
## 3387                                                                                                      Jampack Fall 2001
## 3388                                                                                              Medal of Honor: Frontline
## 3389                                                                                                             Dead Space
## 3390                                                                                                         NFL Blitz 2001
## 3391                                                                             Jikkyou Powerful Pro Yakyuu '98 Kaimakuban
## 3392                                                                                                            Rock Band 2
## 3393                                                                                                                 NHL 11
## 3394                                                                                                               Yakuza 5
## 3395                                                                                                             BurgerTime
## 3396                                                                                                    2002 FIFA World Cup
## 3397                                                                                                      MVP Baseball 2004
## 3398                                                                                   Crash Bandicoot: The Wrath of Cortex
## 3399                                                                                     Smurf: Rescue In Gargamel's Castle
## 3400                                                                                                           Beijing 2008
## 3401                                                                                                        Pokemon Trozei!
## 3402                                                                                                               WWE 2K16
## 3403                                                                                                              Extreme-G
## 3404                                                                                                  Ready 2 Rumble Boxing
## 3405                                                                                          Assassin's Creed: Brotherhood
## 3406                                                                                          Spelling Challenges and more!
## 3407                                                                                  Dead or Alive Xtreme Beach Volleyball
## 3408                                                                                                       Tales of Rebirth
## 3409                                                                                        Silent Hill: Shattered Memories
## 3410                                                                                            Disney Sing It: Family Hits
## 3411                                                                                                                   Blur
## 3412                                                                                                    Barbie: Race & Ride
## 3413                                                                                               Kane & Lynch 2: Dog Days
## 3414                                                                                                          Madden NFL 06
## 3415                                                                                                      Asphalt: Urban GT
## 3416                                                                                        Mega Man Anniversary Collection
## 3417                                                                                      Metal Gear Solid V: Ground Zeroes
## 3418                                                                                  Harvest Moon: Friends of Mineral Town
## 3419                                                                                                Backyard NBA Basketball
## 3420                                                                                                    Ben 10: Alien Force
## 3421                                                                                                Naruto: The Broken Bond
## 3422                                                                                                   Kirby's Dream Course
## 3423                                                                                                       WarioWare D.I.Y.
## 3424                                                                                                               Iron Man
## 3425                                                                                                  The Fight: Lights Out
## 3426                                                                                                            Mega Man X7
## 3427                                                                                              Deus Ex: Human Revolution
## 3428                                                               SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 3429                                                                                      Final Fantasy Anniversary Edition
## 3430                                                                          LEGO Indiana Jones 2: The Adventure Continues
## 3431                                                                                                          SoulCalibur V
## 3432                                                                                    Tokimeki Memorial: Forever with You
## 3433                                                                                                                 Diablo
## 3434                                                                                                                 Q*bert
## 3435                                                                                                         Romancing SaGa
## 3436                                                                                                        Lost: Via Domus
## 3437                                                                                                             Top Spin 3
## 3438                                                                                                   Game Party in Motion
## 3439                                                                                   The Lord of the Rings: The Third Age
## 3440                                                                                                Call of Duty: Black Ops
## 3441                                                                     Disney Sing It! High School Musical 3: Senior Year
## 3442                                                                                                       NCAA Football 09
## 3443                                                                                   Sonic & All-Stars Racing Transformed
## 3444                                                                                                       MLB 11: The Show
## 3445                                                                                                              Jeopardy!
## 3446                                                         Transformers: War for Cybertron (XBox 360, PS3, & PC Versions)
## 3447                                                                                  Kinect Rush: A Disney Pixar Adventure
## 3448                                                                                     Sammy Sosa High Heat Baseball 2001
## 3449                                                                                                  Skylanders SWAP Force
## 3450                                                                                     Terminator 3: Rise of the Machines
## 3451                                                                                                Guitar Hero: Smash Hits
## 3452                                                                                                      Tom Clancy's HAWX
## 3453                                                                                                 Alice: Madness Returns
## 3454                                                                                                  Shin Megami Tensei IV
## 3455                                                                                                                NBA 2K7
## 3456                                                                                     International Superstar Soccer '98
## 3457                                                                                            FIFA: Road to  World Cup 98
## 3458                                                                                                           World Cup 98
## 3459                                                                                                                 NHL 12
## 3460                                                                                                NASCAR: Dirt to Daytona
## 3461                                                                                                      Unreal Tournament
## 3462                                                                                                        Digimon World 2
## 3463                                                                                                     Tales of Phantasia
## 3464                                                                                      Prince of Persia: The Two Thrones
## 3465                                                                        Xenosaga Episode II: Jenseits von Gut und Bæžšse
## 3466                                                                                                   Gex: Enter the Gecko
## 3467                                                                                                 Shrek 2: Beg for Mercy
## 3468                                                                                                         FIFA Soccer 10
## 3469                                                                              JoJo's Bizarre Adventure: All Star Battle
## 3470                                                                                              Contra: Shattered Soldier
## 3471                                                                      Championship Motocross featuring Ricky Carmichael
## 3472                                                                                     Dragon Ball Z: Chou Saiya Densetsu
## 3473                                                                                   Final Fantasy: The 4 Heroes of Light
## 3474                                                                                                         Rayman Legends
## 3475                                                                                           Fire Emblem: Seisen no Keifu
## 3476                                                                                                            FIFA Soccer
## 3477                                                                               Tenchu 2: Birth of the Stealth Assassins
## 3478                                                                                               Tony Hawk's Pro Skater 4
## 3479                                                                                     Go Diego Go! Great Dinosaur Rescue
## 3480                                                                                           Naruto: Uzumaki Chronicles 2
## 3481                                                                                                                 NHL 06
## 3482                                                                                                        Parasite Eve II
## 3483                                                                                                         NFL Blitz 2000
## 3484                                                                                                               Skate it
## 3485                                                                                              Pro Evolution Soccer 2015
## 3486                                                              London 2012: The Official Video Game of the Olympic Games
## 3487                                                                                                        Madden NFL 2002
## 3488                                                                                                       NCAA Football 10
## 3489                                                                             Phineas and Ferb: Across the 2nd Dimension
## 3490                                                                                                             Theme Park
## 3491                                                                                                      Far Cry Instincts
## 3492                                                                                               Hasbro Family Game Night
## 3493                                                                                               Tony Hawk's Pro Skater 4
## 3494                                                                                       ATV Offroad Fury: Blazin' Trails
## 3495                                                                                                     Tales of the Abyss
## 3496                                                                                                               Payday 2
## 3497                                                                      Mobile Suit Gundam: Giren no Yabou- Zeon no Keifu
## 3498                                                                                                     Blacksite: Area 51
## 3499                                                                                    Spyro Orange: The Cortex Conspiracy
## 3500                                                                                                    XCOM: Enemy Unknown
## 3501                                                                                                            Petz Dogz 2
## 3502                                                                                                      Beyond The Beyond
## 3503                                                                                                    Ben 10: Alien Force
## 3504                                                                                          Skylanders: Spyro's Adventure
## 3505                                                                                          Cabela's Dangerous Hunts 2011
## 3506                                                                                           The Sims 3: World Adventures
## 3507                                                                                                          Madden NFL 06
## 3508                                                                        Mega Man Star Force 2: Zerker x Ninja / Saurian
## 3509                                                                                                            Titanfall 2
## 3510                                                                                             BlazBlue: Calamity Trigger
## 3511                                                         Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 3512                                                                                                               Iron Man
## 3513                                                                                               Naruto: Ultimate Ninja 2
## 3514                                                                                         The Mysterious Murasame Castle
## 3515                                                                                                           NBA Hangtime
## 3516                                                                                                                 NHL 10
## 3517                                                                                                          Zumba Fitness
## 3518                                                                                                            Rock Band 3
## 3519                                                                                                             Blood Wake
## 3520                                                                                     Dynasty Warriors 5: Xtreme Legends
## 3521                                                                                                        Rapala: We Fish
## 3522                                                                                         Harvest Moon: Sunshine Islands
## 3523                                                                                                               WWE 2K15
## 3524                                                                                                    Jampack Summer 2002
## 3525                                                                                            FIFA World Cup Germany 2006
## 3526                                                                                         Wreckless: ThE YaKuza MisSiOns
## 3527                                                                                                        Super Bomberman
## 3528                                                                                                               Defiance
## 3529                                                                                       Disgaea 4: A Promise Unforgotten
## 3530                                                               SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 3531                                                                        SpongeBob SquarePants: Battle for Bikini Bottom
## 3532                                                                                                     Doom 3 BFG Edition
## 3533                                                                                             SD Gundam G Generation Neo
## 3534                                                                                                           Spider-Man 3
## 3535                                                                                              Pro Evolution Soccer 2012
## 3536                                                                                                            The Conduit
## 3537                                                                                                        Trivial Pursuit
## 3538                                                                                                        Just Dance 2016
## 3539                                                                                                        Disney Universe
## 3540                                                                                                   RalliSport Challenge
## 3541                                                                                         Resident Evil Outbreak File #2
## 3542                                                                                                             Top Spin 3
## 3543                                                                                        Bob the Builder: Can We Fix It?
## 3544                                                                                                                   XIII
## 3545                                                                                               Tomb Raider: Anniversary
## 3546                                                                                                           Bratz 4 Real
## 3547                                                                                                         Rune Factory 4
## 3548                                                                                                     3D Dot Game Heroes
## 3549                                                                                                                     Up
## 3550                                                                                                      Breath of Fire IV
## 3551                                                                                                      Tales of Zestiria
## 3552                                                                                              True Crime: Streets of LA
## 3553                                                                                                            Odin Sphere
## 3554                                                                                              Petz Wild Animals: Tigerz
## 3555                                                                                                    The Incredible Hulk
## 3556                                                                                               Ms. Pac-Man Maze Madness
## 3557                                                                                                   Xenoblade Chronicles
## 3558                                                                                                              Titanfall
## 3559                                                                                                         Arena Football
## 3560                                                                          The Lord of the Rings: The Return of the King
## 3561                                                                                                         NHL Hitz 20-02
## 3562                                                                                The Legend of Spyro: Dawn of the Dragon
## 3563                                                                                          Classic NES Series: Dr. Mario
## 3564                                                                                                  The Sims: Bustin' Out
## 3565                                                                                                  NCAA March Madness 07
## 3566                                                                                             Monsters, Inc. Scream Team
## 3567                                                                                         Warhammer 40,000: Space Marine
## 3568                                                                                                Harry Potter Collection
## 3569                                                                                                             Top Spin 3
## 3570                                                                           Yu-Gi-Oh! World Championship Tournament 2004
## 3571                                                                               Cabela's Big Game Hunter 2005 Adventures
## 3572                                                                                                         LEGO Rock Band
## 3573                                                                                                    Knockout Kings 2001
## 3574                                                                                               Army Men: Sarge's Heroes
## 3575                                                                                                            Petz Dogz 2
## 3576                                                                                           Battlefield 2: Modern Combat
## 3577                                                                                                      Tom Clancy's HAWX
## 3578                                                                                                 All-Star Baseball 2002
## 3579                                                                                                  Backyard NFL Football
## 3580                                                                                                  Minecraft: Story Mode
## 3581                                                                                Jillian Michaels Fitness Ultimatum 2010
## 3582                                                                                            Need for Speed: Most Wanted
## 3583                                                                                                          NASCAR Rumble
## 3584                                                                                                                   Bolt
## 3585                                                                                                              WWE Raw 2
## 3586                                                                                                        Resident Evil 2
## 3587                                                                                                            Mega Man X2
## 3588                                                                                                              Manhunt 2
## 3589                                                                               Fullmetal Alchemist and the Broken Angel
## 3590                                                                                                  Tony Hawk's Project 8
## 3591                                                                                               Hamtaro: Ham-Hams Unite!
## 3592                                                                                                          Batman Begins
## 3593                                                                                                                   Dogz
## 3594                                                                                                       Yokai Sangokushi
## 3595                                                                                             Tony Hawk's Proving Ground
## 3596                                                                                          Dr. Seuss' The Cat in the Hat
## 3597                                                                                                    Barbie Groovy Games
## 3598                                                                                                            Wolfenstein
## 3599                                                                                        Yu-Gi-Oh! Reshef of Destruction
## 3600                                                                                                Blinx: The Time Sweeper
## 3601                                                                                                      ESPN NFL Football
## 3602                                                                                                     Fatal Fury Special
## 3603                                                                                              Major League Baseball 2K5
## 3604                                                                                                    Tetris Party Deluxe
## 3605                                                                                                     DS Bimoji Training
## 3606                                                                                                           Gravity Rush
## 3607                                                                                                          Quantum Break
## 3608                                                                                               Archer Maclean's Mercury
## 3609                                                                                                                   TMNT
## 3610                                                                                         Middle-Earth: Shadow of Mordor
## 3611                                                                                       Soldier of Fortune: Gold Edition
## 3612                                                                                                                FIFA 15
## 3613                                                                              Final Fantasy IV: The Complete Collection
## 3614                                                                                                Frontlines: Fuel of War
## 3615                                                                                     MX 2002 Featuring Ricky Carmichael
## 3616                                                                                                       NCAA Football 07
## 3617                                                                                      Lunar: Silver Star Story Complete
## 3618                                                                                    Harvest Moon: The Tale of Two Towns
## 3619                                                                                                         No More Heroes
## 3620                                                                                               NBA Showtime: NBA on NBC
## 3621                                                                                         God of War: Origins Collection
## 3622                                                                        Dora The Explorer: Dora Saves the Snow Princess
## 3623                                                                                                          Soul Reaver 2
## 3624                                                                                        Metal Gear Solid 3: Subsistence
## 3625                                                                                           The Godfather (old US sales)
## 3626                                                                                          Enslaved: Odyssey to the West
## 3627                                                                                                            Daytona USA
## 3628                                                                                                                WWF Raw
## 3629                                                                                                Shin Super Robot Taisen
## 3630                                                                                                       Jump Super Stars
## 3631                                                                                                       Guitar Hero Live
## 3632                                                                                               The Activision Decathlon
## 3633                                                         Simple 1500 Series Vol. 73: The Invaders ~Space Invaders 1500~
## 3634                                                                                                       Fighting Force 2
## 3635                                                                                                            Sakura Wars
## 3636                                                                                                                   Catz
## 3637                                                                                                          Extermination
## 3638                                                                                                      Batman: Vengeance
## 3639                                                                                       Ratchet & Clank: Quest for Booty
## 3640                                                                                                      Derby Stallion 04
## 3641                                                                                             Rapala Tournament Fishing!
## 3642                                                                                     Hot Shots Golf: World Invitational
## 3643                                                                                               Tony Hawk's Pro Skater 3
## 3644                                                                                                          Mega Man Zero
## 3645                                                                                                            Contender 2
## 3646                                                                                           Resident Evil: Revelations 2
## 3647                                                                                                 Star Wars: Dark Forces
## 3648                                                                                                        LEGO Dimensions
## 3649                                                                                                                NBA 2K8
## 3650                                                                                                         Rayman Origins
## 3651                                                                                        The Amazing Spider-Man 2 (2014)
## 3652                                                                                            SD Gundam G Generation Zero
## 3653                                                                                                Assassin's Creed: Unity
## 3654                                                                                                      MX vs. ATV: Alive
## 3655                                                                                                   Super Robot Taisen F
## 3656                                                                                                                Shrek 2
## 3657                                                                                                              Purr Pals
## 3658                                                                                                    Assassin's Creed II
## 3659                                                                Soccer Tsuku 2002: J-League Pro Soccer Club o Tsukurou!
## 3660                                                                                           Secret Agent Clank(US sales)
## 3661                                                                                     SpongeBob SquarePants: SuperSponge
## 3662                                                                                       Super Robot Taisen F Kanketsuhen
## 3663                                                                                              Tak and the Power of Juju
## 3664                                                                                            Madagascar: Escape 2 Africa
## 3665                                                                                                  Lips: Number One Hits
## 3666                                                                                                        Mortal Kombat 3
## 3667                                                                                           Star Wars Battlefront (2015)
## 3668                                                                                                       Turok: Evolution
## 3669                                                                                                                 Grease
## 3670                                                                                                   Jak X: Combat Racing
## 3671                                                                                             Donkey Kong Jungle Climber
## 3672                                                                                                          American Idol
## 3673                                                                                                 Top Gun: Fire at Will!
## 3674                                                                                   Barbie Horse Adventures: Riding Camp
## 3675                                                                                                      Red Dead Revolver
## 3676                                                                                                             CrossworDS
## 3677                                                                                           Viva Pinata: Pocket Paradise
## 3678                                                                                                         Petz Catz Clan
## 3679                                                                                ZhuZhu Pets 2: Featuring The Wild Bunch
## 3680                                                                                            Sly Cooper: Thieves in Time
## 3681                                                                                                               Iron Man
## 3682                                                                                                  SingStar Summer Party
## 3683                                                                                                     Spec Ops: The Line
## 3684                                                                                        The SpongeBob SquarePants Movie
## 3685                                                                                                                 NHL 14
## 3686                                                                                                                F1 2013
## 3687                                                                                                         FIFA Soccer 07
## 3688                                                                  Gekikuukan Pro Yakyuu: At the End of the Century 1999
## 3689                                                                                                Legends of WrestleMania
## 3690                                                                      Are You Smarter than a 5th Grader? Make the Grade
## 3691                                                                                                Tiger Woods PGA Tour 08
## 3692                                                                                   Medarot 2: Kabuto / Kuwagata Version
## 3693                                                                                        Dance Dance Revolution Ultramix
## 3694                                                                                                  Crash Tag Team Racing
## 3695                                                                                                        Front Mission 4
## 3696                                                                              The Fairly Odd Parents: Breakin' Da Rules
## 3697                                                                                                         Rayman Origins
## 3698                                                                                         Ninokuni: Shikkoku no Madoushi
## 3699                                                                                                               F.E.A.R.
## 3700                                                                                          Enslaved: Odyssey to the West
## 3701                                                                                           SRS: Street Racing Syndicate
## 3702                                                                                            Dragon Ball Z: Shin Budokai
## 3703                                                                                                Tiger Woods PGA Tour 13
## 3704                                                                                             Dynasty Warriors: Gundam 3
## 3705                                                                                                  Def Jam: Fight for NY
## 3706                                                                                                           Action Force
## 3707                                                                                                                FIFA 99
## 3708                                                                                                       Gauntlet Legends
## 3709                                                                                        Kidou Senshi Gundam: Extreme VS
## 3710                                                                     System 3 presents Ferrari Challenge Trofeo Pirelli
## 3711                                                                                                       Tony Hawk: Shred
## 3712                                                                                                Tiger Woods PGA Tour 11
## 3713                                                                                                            NBA Live 10
## 3714                                                                                                             Metro 2033
## 3715                                                                                                          Bust A Groove
## 3716                                                                                          Fire Emblem: Path of Radiance
## 3717                                                    Dragon Quest Characters: Torneko no Daibouken 3: Fushigi no Dungeon
## 3718                                                                                                   Hotel Dusk: Room 215
## 3719                                                                                                Final Fantasy Explorers
## 3720                                                                                              Pachi-Slot Aruze Oukoku 2
## 3721                                                                                                     Bratz: Rock Angelz
## 3722                                                                                                             SSX Tricky
## 3723                                                                                    Greg Hastings' Tournament Paintball
## 3724                                                               World Soccer Winning Eleven 7 International (JP version)
## 3725                                                                                                    ESPN NBA Basketball
## 3726                                                                                      Dragon Ball Z: Ultimate Tenkaichi
## 3727                                                                                                 Sacred 2: Fallen Angel
## 3728                                                                                                          Two Worlds II
## 3729                                                                                                         Over the Hedge
## 3730                                                                                                  Mat Hoffman's Pro BMX
## 3731                                                                             Phineas and Ferb: Across the 2nd Dimension
## 3732                                                                                                       50 Classic Games
## 3733                                                                                                            Let's Draw!
## 3734                                                                                                                 NHL 14
## 3735                                                                                                                 Popeye
## 3736                                                                                                           Petz Nursery
## 3737                                                                                                             The Hobbit
## 3738                                                                                                    War of the Monsters
## 3739                                                                          Harry Potter and the Deathly Hallows - Part 1
## 3740                                                                                                      NBA Street Vol. 2
## 3741                                                                              The Incredible Hulk: Ultimate Destruction
## 3742                                                                                              Time Crisis: Razing Storm
## 3743                                                                                         Summer Sports: Paradise Island
## 3744                                                                         Sakura Taisen 2 - Kimi, Shinitamou Koto Nakare
## 3745                                                                                                         Time Crisis II
## 3746                                                                                                      Inazuma Eleven GO
## 3747                                                                                                            Clock Tower
## 3748                                                                                                  NCAA March Madness 06
## 3749                                                                                                        LEGO Dimensions
## 3750                                                                                                 Valkyria Chronicles II
## 3751                                                                                                      Jampack Volume 11
## 3752                                                                                             Monster High: Ghoul Spirit
## 3753                                                                               Tatsunoko vs. Capcom: Ultimate All-Stars
## 3754                                                                                   Rune Factory: A Fantasy Harvest Moon
## 3755                                                                                               Legacy of Kain: Defiance
## 3756                                                                 SpongeBob SquarePants: Game Boy Advance Video Volume 2
## 3757                                                                                                NCAA March Madness 2005
## 3758                                                                                                             007 Racing
## 3759                                                                                    Tactics Ogre: Let Us Cling Together
## 3760                                                                                                      Conflict: Vietnam
## 3761                                                                                                         Dragon's Crown
## 3762                                                             2 in 1 Combo Pack: Sonic Heroes / Super Monkey Ball Deluxe
## 3763                                                                                                     MLB SlugFest 20-04
## 3764                                                                                                Gex 3: Deep Cover Gecko
## 3765                                                                                                              NASCAR 09
## 3766                                                                                                      Blitz: The League
## 3767                                                                                                              Manhunt 2
## 3768                                                                                                        Just Dance 2015
## 3769                                                                                                         Jampack Vol. 2
## 3770                                                                                               The LEGO Movie Videogame
## 3771                                                                                                         Virtual Soccer
## 3772                                                                                                              Overwatch
## 3773                                                                         Romance of the Three Kingdoms IV: Wall of Fire
## 3774                                                                                       Monster Jam: Path of Destruction
## 3775                                                                                                           Winning Post
## 3776                                                              Peter Jackson's King Kong: The Official Game of the Movie
## 3777                                                                                                        Burnout Revenge
## 3778                                                                                       Medal of Honor: European Assault
## 3779                                                                                  Ty the Tasmanian Tiger 2: Bush Rescue
## 3780                                                                      The Lord of the Rings: The Fellowship of the Ring
## 3781                                                                                                                 NBA 06
## 3782                                                                                                         Inazuma Eleven
## 3783                                                                                                           Excite Truck
## 3784                                                                         Phoenix Wright: Ace Attorney - Justice for All
## 3785                                                                                                             Spider-Man
## 3786                                                                                     Magician's Quest: Mysterious Times
## 3787                                                                                           Hello Kitty: Big City Dreams
## 3788                                                                                                          X-Men Legends
## 3789                                                                            Mario & Sonic at the Rio 2016 Olympic Games
## 3790                                                                                                                G-Force
## 3791                                                                                                        Front Mission 2
## 3792                                                                                       StarCraft II: Legacy of the Void
## 3793                                                                                                     Jewel Master Egypt
## 3794                                                                                                       ModNation Racers
## 3795                                                                                                        LEGO Dimensions
## 3796                                                                                             WWE SmackDown vs. Raw 2010
## 3797                                                                                     Are You Smarter Than A 5th Grader?
## 3798                                                                                                                    Oni
## 3799                                                                         Tom Clancy's Ghost Recon Advanced Warfighter 2
## 3800                                                               SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 3801                                                                                                   Terminator Salvation
## 3802                                                                                               How to Train Your Dragon
## 3803                                                                                  The Lord of the Rings: The Two Towers
## 3804                                                                                                    Batman: Arkham City
## 3805                                                                                                                 Juiced
## 3806                                                                                                           The Warriors
## 3807                                                                                          J-League Soccer: Prime Goal 2
## 3808                                                                                                       Star Fox Command
## 3809                                                                                                Dragon Age: Inquisition
## 3810                                                                                              Wayne Gretzky's 3D Hockey
## 3811                                                                                                            NASCAR 2000
## 3812                                                                                              Pachi-Slot Aruze Oukoku 4
## 3813                                                                                                            Bulletstorm
## 3814                                                                   Return to Castle Wolfenstein: Operation Resurrection
## 3815                                                                                               Mario Tennis: Power Tour
## 3816                                                                                                                 Seaman
## 3817                                                                                                             The Grinch
## 3818                                                                                                     Tales of Symphonia
## 3819                                                                                        Michael Jackson: The Experience
## 3820                                                                                                       Tales of Destiny
## 3821                                                                                                     Stuntman: Ignition
## 3822                                                         Littlest Pet Shop 3: Biggest Stars - Blue / Pink / Purple Team
## 3823                                                                                             F.E.A.R. 2: Project Origin
## 3824                                                                                   Mystery Dungeon: Shiren the Wanderer
## 3825                                                                                                          GT Pro Series
## 3826                                                                                                Tiger Woods PGA Tour 11
## 3827                                                                                                     The Golden Compass
## 3828                                                                                               Final Fantasy Chronicles
## 3829                                                                                                                F1 2009
## 3830                                                                                                        Syphon Filter 3
## 3831                                                                                          Metal Gear Solid 2: Substance
## 3832                                                                              Tales of Symphonia: Dawn of the New World
## 3833                                                                                                            NBA Live 08
## 3834                                                                                  Guinness World Records: The Videogame
## 3835                                                                                                       We Love Katamari
## 3836                                                                                     Sesame Street: Once Upon A Monster
## 3837                                                                                                     NCAA Football 2003
## 3838                                                                                                               We Cheer
## 3839                                                                                                          Madden NFL 07
## 3840                                                                                         Ready 2 Rumble Boxing: Round 2
## 3841                                                                                                    LEGO Jurassic World
## 3842                                                                                                             Mega Man 6
## 3843                                                                                                            NBA Live 09
## 3844                                                                                                                FIFA 12
## 3845                                                                                                    Mission: Impossible
## 3846                                                                                                  Rory McIlroy PGA Tour
## 3847                                                                                                         SingStar Dance
## 3848                                                                                          Rival Schools: United By Fate
## 3849                                                                                                    Lords of the Fallen
## 3850                                                                                                        Swing Away Golf
## 3851                                                                                 J-League Pro Soccer Club o Tsukurou! 3
## 3852                                                                                                    Tomb Raider: Legend
## 3853                                                                                                       Freedom Fighters
## 3854                                                                                                   Silent Hill: Origins
## 3855                                                                                                                    Gun
## 3856                                                                                  That's So Raven 2: Supernatural Style
## 3857                                                                                                    Fight Night Round 3
## 3858                                                                                                           The Punisher
## 3859                                                                                            Kirby and the Rainbow Curse
## 3860                                                                                                        Front Mission 3
## 3861                                                                            Kenkou Ouen Recipe 1000: DS Kondate Zenshuu
## 3862                                                                                                            SSX On Tour
## 3863                                                                                                   Frozen: Olaf's Quest
## 3864                                                                                          Disgaea 3: Absence of Justice
## 3865                                                                                               Tony Hawk's Pro Skater 3
## 3866                                                                                                   Way of the Samurai 3
## 3867                                                                                          The Sims 2: Open for Business
## 3868                                                                                 Rune Factory 2: A Fantasy Harvest Moon
## 3869                                                                               Harry Potter and the Prisoner of Azkaban
## 3870                                                                                                            Omega Boost
## 3871                                                                                                                NFL 2K3
## 3872                                                                                                                 Cars 2
## 3873                                                                                             Go Diego Go! Safari Rescue
## 3874                                                                                                             SimAnimals
## 3875                                                                                                          NBA Live 2002
## 3876                                                                                                    Jampack Winter 2002
## 3877                                                                                               LEGO Marvel Super Heroes
## 3878                                                                                                     Way of the Samurai
## 3879                                                                                                       The 3rd Birthday
## 3880                                                                                   Sonic & All-Stars Racing Transformed
## 3881                                                                                                          Kung Fu Panda
## 3882                                                                                                     Classic Word Games
## 3883                                                                                        Epic Mickey 2: The Power of Two
## 3884                                                                                                          Fishing Derby
## 3885                                                                                                          Pac-Man Fever
## 3886                                                                                         Spectrobes: Beyond the Portals
## 3887                                                                                            International Track & Field
## 3888                                                                                                  HSX HyperSonic.Xtreme
## 3889                                                                                                                   Lair
## 3890                                                                                                        Madden NFL 2004
## 3891                                                                                         Jikkyou Powerful Pro Yakyuu 10
## 3892                                                                                                               Summoner
## 3893                                                                                                         Soul Sacrifice
## 3894                                                                                                           Virtual Pool
## 3895                                                                                                     DC Universe Online
## 3896                                                                                                      Jam With the Band
## 3897                                                                                                            NBA Live 07
## 3898                                                                                          IL-2 Sturmovik: Birds of Prey
## 3899                                                                                                 100 All-Time Favorites
## 3900                                                                                    The Walking Dead: Survival Instinct
## 3901                                                                                             Major League Baseball 2K10
## 3902                                                                                                    Alice in Wonderland
## 3903                                                                                                            Ratatouille
## 3904                                                                          SpongeBob SquarePants: Lights, Camera, Pants!
## 3905                                                                                                          Wrecking Crew
## 3906                                                                                                Rugrats: Scavenger Hunt
## 3907                                                                 International Superstar Soccer 2000 (All region sales)
## 3908                                                                                                          NBA Live 2004
## 3909                                                                                                               Iron Man
## 3910                                                                                                       Alien: Isolation
## 3911                                                                                          Dai-4-Ji Super Robot Taisen S
## 3912                                                                                              Pro Evolution Soccer 2010
## 3913                                                                          Disney's Kim Possible: Revenge of Monkey Fist
## 3914                                                                          Naruto Shippuden: Clash of Ninja Revolution 3
## 3915                                                                                        Ace Combat Zero: The Belkan War
## 3916                                                                                                    Dragon Age: Origins
## 3917                                                                                                       Dynasty Warriors
## 3918                                                                                                                 NHL 07
## 3919                                                                                            SoulCalibur: Broken Destiny
## 3920                                                                                                             Dishonored
## 3921                                                                                              Dragon Ball: Raging Blast
## 3922                                                                               Naruto Shippuden: Ultimate Ninja Storm 3
## 3923                                                                                                  Petz: Hamsterz Life 2
## 3924                                                                                               World Championship Poker
## 3925                                                                                                               The BIGS
## 3926                                                                                                               WWE 2K16
## 3927                                                                                                          Final Fantasy
## 3928                                                                                     Dragon Ball Z: Supersonic Warriors
## 3929                                                                                                            NBA Ballers
## 3930                                                                                                Silent Hill 4: The Room
## 3931                                                                                                          River Raid II
## 3932                                                                                             Capcom Classics Collection
## 3933                                                                                                          My Word Coach
## 3934                                                                                                         Monopoly Party
## 3935                                                                                                Tiger Woods PGA Tour 13
## 3936                                                                                                         NHL FaceOff 98
## 3937                                                                                                           The Saboteur
## 3938                                                     The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 3939                                                                                                           Sonic Riders
## 3940                                                                                           Looney Tunes: Back in Action
## 3941                                                                                                    Monsters vs. Aliens
## 3942                                                                                                         Midnight Magic
## 3943                                                                                                                 NHL 09
## 3944                                                                                             Bully: Scholarship Edition
## 3945                                                                                             WWE SmackDown vs. RAW 2007
## 3946                                                                                                       Midnight Club II
## 3947                                                                                               Monster Hunter Freedom 2
## 3948                                                                                                Tiger Woods PGA Tour 07
## 3949                                                                                                            Ratatouille
## 3950                                                                                             Avatar: The Last Airbender
## 3951                                                                                       Blue's Clues: Blue's Big Musical
## 3952                                                                                                      The Mummy Returns
## 3953                                                                                          Cars Toon: Mater's Tall Tales
## 3954                                                                                 Paws & Claws: Dogs & Cats Best Friends
## 3955                                                                                                    Hitman: Blood Money
## 3956                                                                                                         Disney Sing It
## 3957                                                                                                        Chopper Command
## 3958                                                                                                        Lost: Via Domus
## 3959                                                                                                Crash: Mind Over Mutant
## 3960                                                                                                   Activision Anthology
## 3961                                                                                                             Picross DS
## 3962                                                                                              Pro Evolution Soccer 2012
## 3963                                                                                   Final Fantasy II Anniversary Edition
## 3964                                                                                                   Test Drive Unlimited
## 3965                                                                                 Harry Potter and the Half-Blood Prince
## 3966                                                                                                                Unit 13
## 3967                                                                                                               R.U.S.E.
## 3968                                                                                             Theatrhythm: Final Fantasy
## 3969                                                                                               Prince of Persia Trilogy
## 3970                                                                                                Goldeneye 007: Reloaded
## 3971                                                                                            Rugrats in Paris: The Movie
## 3972                                                              Hidden Mysteries: Titanic - Secrets of the Fateful Voyage
## 3973                                                                                            Star Wars: Jedi Starfighter
## 3974                                                                                      Tactics Ogre: The Knight of Lodis
## 3975                                                         Transformers: War for Cybertron (XBox 360, PS3, & PC Versions)
## 3976                                                                                                  Super Robot Taisen MX
## 3977                                                                                                      Sega Bass Fishing
## 3978                                                                                        Bases Loaded '96: Double Header
## 3979                                                                                                 Dead or Alive Ultimate
## 3980                                                                                                              RPG Maker
## 3981                                                                                             Major League Baseball 2K12
## 3982                                                                                               Rooms: The Main Building
## 3983                                                                                      Dance Dance Revolution Universe 2
## 3984                                                                                                        Burnout Revenge
## 3985                                                                                                  Star Wars: Clone Wars
## 3986                                                     The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 3987                                                                                                          Madden NFL 13
## 3988                                                                                                          Madden NFL 11
## 3989                                                                                                         Monster Hunter
## 3990                                                                                                   NBA Street Homecourt
## 3991                                                                                              Tony Hawk's Underground 2
## 3992                                                                                            SplashDown: Rides Gone Wild
## 3993                                                                                                        Super Famista 5
## 3994                                                                                                        Shrek SuperSlam
## 3995                                                                                                         Rayman Advance
## 3996                                                                                                   Super Robot Taisen Z
## 3997                                                                                                 PoPoLoCrois Monogatari
## 3998                                                                                                                    Wet
## 3999                                                                                               Tomb Raider: Anniversary
## 4000                                                                                                            Fantastic 4
## 4001                                                                                          Men in Black II: Alien Escape
## 4002                                                                                                      RealSports Tennis
## 4003                                                                                       Nicktoons: Attack of the Toybots
## 4004                                                                                                Raiders of the Lost Ark
## 4005                                                                                                               Gauntlet
## 4006                                                                                                 Alice: Madness Returns
## 4007                                                                                                          Madden NFL 07
## 4008                                                                                                           Spider-Man 2
## 4009                                                                                                         Ridge Racer 3D
## 4010                                                                                                             Picross 3D
## 4011                                                                                             Dynasty Warriors: Gundam 2
## 4012                                                                                       Cars Mater-National Championship
## 4013                                                                                              Tony Hawk's Underground 2
## 4014                                                                                                   Super Monkey Ball 3D
## 4015                                                                                                   Euro Truck Simulator
## 4016                                                                   SpongeBob SquarePants: Creature from the Krusty Krab
## 4017                                                         Dragon Quest Heroes: The World's Tree Woe and the Blight Below
## 4018                                                                                                                F1 2012
## 4019                                                                                                               NBA 2K11
## 4020                                                                                                             Ice Hockey
## 4021                                                                                                  Tony Hawk's Project 8
## 4022                                                                                                       Babysitting Mama
## 4023                                                                                              Bleach: Soul Resurreccion
## 4024                                                                                                The Matrix: Path of Neo
## 4025                                                                                   Dragon Ball Z: Supersonic Warriors 2
## 4026                                                                                                       Sonic Lost World
## 4027                                                                                                    WWE Wrestlemania X8
## 4028                                                                                                                 Boogie
## 4029                                                                                                     The Price is Right
## 4030                                                                                            Power Rangers: Dino Thunder
## 4031                                                                                                 GoldenEye: Rogue Agent
## 4032                                                                                              Fire Emblem: Radiant Dawn
## 4033                                                                                                               The Sims
## 4034                                                                                   Plants vs. Zombies: Garden Warfare 2
## 4035                                                                                                            Grandia III
## 4036                                                                                            Ace Combat: Assault Horizon
## 4037                                                           Mobile Suit Gundam Seed Destiny: Rengou vs. Z.A.F.T. II Plus
## 4038                                                                                                          Mario & Wario
## 4039                                                                                           Scarface: The World is Yours
## 4040                                                                                      Resident Evil: The Mercenaries 3D
## 4041                                                                                                         FIFA Soccer 64
## 4042                                                                                            Dreamworks Madagascar Kartz
## 4043                                                                                  Star Wars Battlefront: Elite Squadron
## 4044                                                                                         Epic Mickey: Power of Illusion
## 4045                                                                                               Kane & Lynch 2: Dog Days
## 4046                                                                                J-League Pro Soccer Club wo Tsukurou! 2
## 4047                                                                   SpongeBob SquarePants: Creature from the Krusty Krab
## 4048                                                                                                      Backyard Baseball
## 4049                                                                                                          WipEout Pulse
## 4050                                                                                         Middle-Earth: Shadow of Mordor
## 4051                                                                             Barbie Horse Adventures: Wild Horse Rescue
## 4052                                                                                                   Pokemon Art Academy 
## 4053                                                                                     Taiko no Tatsujin: Appare Sandaime
## 4054                                                                                               One Piece: Grand Battle!
## 4055                                                                                   Sonic & All-Stars Racing Transformed
## 4056                                                                                                         Medal of Honor
## 4057                                                                                                             Asphalt 3D
## 4058                                                     Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 4059                                                                                                             Crazy Taxi
## 4060                                                                                             Dragon Ball Z: Burst Limit
## 4061                                                                                                           Spy Hunter 2
## 4062                                                                                                        Pac-Man World 2
## 4063                                                                                     Die Hard Trilogy 2: Viva Las Vegas
## 4064                                                                           Momotarou Dentetsu X: Kyuushuu-hen mo Arubai
## 4065                                                                                                 Sniper: Art of Victory
## 4066                                                                                                      Tales of Legendia
## 4067                                                                                                           SimCity 2000
## 4068                                                                                                         FIFA Soccer 09
## 4069                                                                                                            Steel Diver
## 4070                                                                                              Bravely Second: End Layer
## 4071                                                                                                      Alone in the Dark
## 4072                                                                                         Football Manager Handheld 2009
## 4073                                                                         Puzzle & Dragons Z + Super Mario Bros. Edition
## 4074                                                                                                        Shrek the Third
## 4075                                                                                          Madagascar: Operation Penguin
## 4076                                                                                      Need for Speed: Porsche Unleashed
## 4077                                                                                Yu-Gi-Oh! Forbidden Memories (JP sales)
## 4078                                                                                                              Far Cry 2
## 4079                                                                                                           NFL Street 2
## 4080                                                                                                              Millipede
## 4081                                                                                       The Legend of the Mystical Ninja
## 4082                                                                                                         Mad Max (2015)
## 4083                                                                                                    Rock Band Unplugged
## 4084                                                                                                         Ultimate I Spy
## 4085                                                                                                              Jeopardy!
## 4086                                                                                                  Destroy All Humans! 2
## 4087                                                                                              Skylanders: SuperChargers
## 4088                                                                                                ECW Hardcore Revolution
## 4089                                                                                                   You're in the Movies
## 4090                                                                                                                 Cars 2
## 4091                                                                                         Scene It? Lights Camera Action
## 4092                                                                                                 MotorStorm: Apocalypse
## 4093                                                                                                            Dark Sector
## 4094                                                                                                 Wu-Tang: Shaolin Style
## 4095                                                                                                Tiger Woods PGA Tour 07
## 4096                                                                                   Plants vs. Zombies: Garden Warfare 2
## 4097                                                                                                 Mario Golf: World Tour
## 4098                                                                                           Secret Weapons Over Normandy
## 4099                                                                                                        Harvest Moon 64
## 4100                                                                                                   All-Star Baseball 99
## 4101                                                                                                       NCAA Football 09
## 4102                                                                                                       Bratz: The Movie
## 4103                                                                                                    Crash of the Titans
## 4104                                                                                                 Dragon Ball: XenoVerse
## 4105                                                                                        Rayman Raving Rabbids: TV Party
## 4106                                                                                                      Lollipop Chainsaw
## 4107                                                     Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 4108                                                                                               Vigilante 8: 2nd Offense
## 4109                                                                                                           The Saboteur
## 4110                                                                                         Metal Gear Rising: Revengeance
## 4111                                                                                    Atelier Rorona: Alchemist of Arland
## 4112                                                                                              Theme Park Roller Coaster
## 4113                                                                                             Bass Pro Shops: The Strike
## 4114                                                                         Bakugan Battle Brawlers: Defenders of the Core
## 4115                                                                                                           NFL Xtreme 2
## 4116                                                                                             Major League Baseball 2K13
## 4117                                                                                                  Scrabble 2007 Edition
## 4118                                                                                                                 NHL 16
## 4119                                                                                           Midnight Club: Street Racing
## 4120                                                                                                Tiger Woods PGA Tour 06
## 4121                                                                                                         Fortune Street
## 4122                                                                                            FIFA World Cup Germany 2006
## 4123                                                                                                                     Up
## 4124                                                                                                             Grand Prix
## 4125                                                                                                    Jake Power: Fireman
## 4126                                                                                     World of Outlaws: Sprint Cars 2002
## 4127                                                                                                       Children of Mana
## 4128                                                                                                     Sonic the Hedgehog
## 4129                                                                                                            Fantavision
## 4130                                                                                                          Double Dragon
## 4131                                                                                                          Alien Trilogy
## 4132                                                                                                            NBA Live 99
## 4133                                                                                                                 Karate
## 4134                                                                                                  X-Men: Next Dimension
## 4135                                                                                     Go Diego Go! Great Dinosaur Rescue
## 4136                                                                                               The Godfather (JP sales)
## 4137                                                                                                Dynasty Warriors Gundam
## 4138                                                                                                     Doom 3 BFG Edition
## 4139                                                                                                    Alice in Wonderland
## 4140                                                                                                           Spider-Man 3
## 4141                                                                                                      Super Puyo Puyo 2
## 4142                                                                                                            Rock Band 4
## 4143                                                                                                       Gauntlet Legends
## 4144                                                                                            James Bond 007: Blood Stone
## 4145                                                                                                                WipEout
## 4146                                                                                                Street Fighter X Tekken
## 4147                                                                                                            Dark Sector
## 4148                                                                                                                    ICO
## 4149                                                                                 World of Warcraft: Warlords of Draenor
## 4150                                                                                                   Ford Racing Off Road
## 4151                                                                                                      Cars: Race-O-Rama
## 4152                                           Dragon Quest 25 Shuunen Kinin: Famicom & Super Famicom Dragon Quest I-II-III
## 4153                                                                                                  Unreal Tournament III
## 4154                                                                                                         FIFA Soccer 13
## 4155                                                                                Victorious Boxers: Ippo's Road to Glory
## 4156                                                                                                      Densetsu no Stafi
## 4157                                                                                           Valkyrie Profile 2: Silmeria
## 4158                                                                          Pinball Hall of Fame: The Williams Collection
## 4159                                                                                                  Hot Wheels Velocity X
## 4160                                                                                                          MySims Racing
## 4161                                                                                                 Clash of Elementalists
## 4162                                                                                             F.E.A.R. 2: Project Origin
## 4163                                                                                                       The Sims 2: Pets
## 4164                                                                                                              L.A. Rush
## 4165                                                                                                   Momotarou Dentetsu V
## 4166                                                                                                                Doom 64
## 4167                                                                                                         Bomberman Hero
## 4168                                                                                                 Automobili Lamborghini
## 4169                                                                                                               Quest 64
## 4170                                                                                                Crash: Mind Over Mutant
## 4171                                                                                       Viva Pinata: Trouble in Paradise
## 4172                                                                                        Epic Mickey 2: The Power of Two
## 4173                                                                                                               Commando
## 4174                                                                                                    NBA Ballers: Phenom
## 4175                                                                                          Dragon Age Origins: Awakening
## 4176                                                                                                  Need for Speed Carbon
## 4177                                                                                                              Shadowrun
## 4178                                                                                                  Crazy Taxi: Fare Wars
## 4179                                                                                                    MTV Music Generator
## 4180                                                                                       Warhammer 40,000: Dawn of War II
## 4181                                                                                                          Hamsterz Life
## 4182                                                                                                       Emergency Heroes
## 4183                                                                                            Super Momotarou Dentetsu DX
## 4184                                                                                                             FlingSmash
## 4185                                                                      World Soccer Winning Eleven 8: Liveware Evolution
## 4186                                                                                                      Cars: Race-O-Rama
## 4187                                                                                                    Downhill Domination
## 4188                                                                                                  Dead Space Extraction
## 4189                                                                             Pirates of the Caribbean: Dead Man's Chest
## 4190                                                                                        Silent Hill: Shattered Memories
## 4191                                                                                         Active Life: Extreme Challenge
## 4192                                                                                                                FIFA 12
## 4193                                                                                              Spider-Man: Friend or Foe
## 4194                                                                                                  World Series of Poker
## 4195                                                                                      Inazuma Eleven Go 2: Chrono Stone
## 4196                                                                                                                 NHL 97
## 4197                                                                       Final Fantasy Crystal Chronicles: Echoes of Time
## 4198                                                                                                     Rise of Nightmares
## 4199                                                                                                          EA Sports UFC
## 4200                                                                                      Kong: The 8th Wonder of the World
## 4201                                                                                                           Spider-Man 3
## 4202                                                                                                        Dead or Alive 4
## 4203                                                                                               Godzilla: Save the Earth
## 4204                                                                                      Dance Dance Revolution: Mario Mix
## 4205                                                                                      Metal Gear Solid: The Twin Snakes
## 4206                                                                                                Tiger Woods PGA Tour 07
## 4207                                                                                      Art Academy: Lessons for Everyone
## 4208                                                                                                Mat Hoffman's Pro BMX 2
## 4209                                                                             Metal Gear Solid: The Essential Collection
## 4210                                                                                           One Piece: Pirate Warriors 3
## 4211                                                                                                             Iridion 3D
## 4212                                                                                       2010 FIFA World Cup South Africa
## 4213                                                                                            Classic NES Series: Pac-Man
## 4214                                                                                                          Two Worlds II
## 4215                                                                                                  Football Manager 2015
## 4216                                                                                                    Destroy All Humans!
## 4217                                                                                                            Petz Sports
## 4218                                                                                      Imagine: Figure Skater (US sales)
## 4219                                                                                                        SimCity Creator
## 4220                                                                                   Dragon Ball Z: Collectible Card Game
## 4221                                                                                                           Circus Atari
## 4222                                                                              Harry Potter and the Order of the Phoenix
## 4223                                                                                                  The Sims 3: Ambitions
## 4224                                                                                                Razor Freestyle Scooter
## 4225                                                                                 Disney's Kim Possible 3: Team Possible
## 4226                                                                                         Rygar: The Legendary Adventure
## 4227                                                                                          Syphon Filter: Logan's Shadow
## 4228                                                                                                        Super Batter Up
## 4229                                                                                                              Kessen II
## 4230                                                                                   Crayon Shin-Chan: Arashi o Yobu Enji
## 4231                                                                                                        Stuart Little 2
## 4232                                                                                             Tak 2: The Staff of Dreams
## 4233                                                                                                         SingStar Amped
## 4234                                                                                      Brothers In Arms: Earned in Blood
## 4235                                                                                                        The Evil Within
## 4236                                                                                                   Dragon Ball Z: Sagas
## 4237                                                                                                             Scooby-Doo
## 4238                                                                                                      MX vs. ATV: Alive
## 4239                                                                                                          Hydro Thunder
## 4240                                                                                                        NHL FaceOff '97
## 4241                                                                                                           Thief (2014)
## 4242                                                                                           The Walking Dead: Season One
## 4243                                                                                                            NBA Live 07
## 4244                                                                                      Brothers In Arms: Road to Hill 30
## 4245                                                                                The Legend of Spyro: Dawn of the Dragon
## 4246                                                                                                               Gremlins
## 4247                                                                                                        The Mark of Kri
## 4248                                                                                            Need for Speed: Hot Pursuit
## 4249                                                                                             Jampack Winter 2003 (RP-M)
## 4250                                                                                                 Rugrats: Castle Capers
## 4251                                                                                                       Crash Nitro Kart
## 4252                                                                                           Crayola: Treasure Adventures
## 4253                                                                                                        LEGO The Hobbit
## 4254                                                                                                  Silent Hill: Downpour
## 4255                                                                           Mega Man Star Force 3: Black Ace / Red Joker
## 4256                                                                                             WWE SmackDown vs. Raw 2011
## 4257                                                                                      Jak and Daxter: The Lost Frontier
## 4258                                                                                                  Momotarou Dentetsu 11
## 4259                                                                                                    Disney Infinity 3.0
## 4260                                                                                       The Sims 3: Outdoor Living Stuff
## 4261                                                                                                  Star Wars: Demolition
## 4262                                                                                                         Bloody Roar II
## 4263                                                                                           Delta Force: Black Hawk Down
## 4264                                                                                              The Princess and the Frog
## 4265                                                                                                         Space Invaders
## 4266                                                                                                 .hack//Outbreak Part 3
## 4267                                                                                                             Mother 1+2
## 4268                                                                                                     MX vs. ATV Untamed
## 4269                                                                                                   Boom Blox Bash Party
## 4270                                                                                                               Top Spin
## 4271                                                                                                Brothers In Arms: D-Day
## 4272                                                                                                                Warhawk
## 4273                                                                                                     The Golden Compass
## 4274                                                                                                    Tomb Raider: Legend
## 4275                                                                                                        Just Dance 2014
## 4276                                                                                                      Tales of Vesperia
## 4277                                                     2 Games in 1: SpongeBob SquarePants: SuperSponge & Rugrats Go Wild
## 4278                                                                        Dora The Explorer: Dora Saves the Snow Princess
## 4279                                                                                                        Missile Command
## 4280                                                                                                                FIFA 15
## 4281                                                                                          Jikkyou Powerful Pro Yakyuu 3
## 4282                                                                                         Jikkyou Powerful Pro Yakyuu 12
## 4283                                                                                                       Enter the Matrix
## 4284                                                                                                        LEGO The Hobbit
## 4285                                                                                         NASCAR 2005: Chase for the Cup
## 4286                                                                                              J-League Excite Stage '95
## 4287                                                                                                   Vin Diesel: Wheelman
## 4288                                                                                                                 NHL 15
## 4289                                                                                    Phantasy Star Online Episode I & II
## 4290                                                                                    PlayStation All-Stars Battle Royale
## 4291                                                                                    The Powerpuff Girls: Relish Rampage
## 4292                                                                                              Bleach: The Blade of Fate
## 4293                                                                                  American Girl: Kit Mystery Challenge!
## 4294                                                                                                        Country Dance 2
## 4295                                                                     The Chronicles of Riddick: Escape from Butcher Bay
## 4296                                                                                                         NFL Head Coach
## 4297                                                                                                           Ghostbusters
## 4298                                                                                              Nickelodeon Team Umizoomi
## 4299                                                                                                    NCAA Gamebreaker 99
## 4300                                                                                                Tomb Raider: Underworld
## 4301                                                                                                                Area 51
## 4302                                                                                                        World Stadium 2
## 4303                                                                                                               NHL 2005
## 4304                                                                                          The New York Times Crosswords
## 4305                                                                       Karaoke Revolution Presents American Idol Encore
## 4306                                                                                          Barbie as The Island Princess
## 4307                                                                                           Lego Batman 3: Beyond Gotham
## 4308                                                                                                                 iCarly
## 4309                                                                                    Star Wars Jedi Knight: Jedi Academy
## 4310                                                                                                                Phoenix
## 4311                                                                                          Dynasty Warriors: Strikeforce
## 4312                                                                                                        Brain Challenge
## 4313                                                                                         Command & Conquer: Red Alert 3
## 4314                                                                                            Enemy Territory: Quake Wars
## 4315                                                                                             Major League Baseball 2K11
## 4316                                                                                             Harvest Moon DS (US sales)
## 4317                                                                                                             Apocalypse
## 4318                                                                                                   ATV Offroad Fury Pro
## 4319                                                                                                      Burnout Dominator
## 4320                                                                                       Yu-Gi-Oh! Destiny Board Traveler
## 4321                                                                                                            God Eater 2
## 4322                                                                                       Scooby-Doo! and the Spooky Swamp
## 4323                                                                                                    Crash of the Titans
## 4324                                                                          World Soccer Winning Eleven 5 Final Evolution
## 4325                                                                                                Red Faction: Armageddon
## 4326                                                                                            Sphinx and the Cursed Mummy
## 4327                                                                                                           Fatal Fury 2
## 4328                                                                                                     Rampage World Tour
## 4329                                                                                                  Pokemon Puzzle League
## 4330                                                                                         PES 2009: Pro Evolution Soccer
## 4331                                                                                Despicable Me: The Game - Minion Mayhem
## 4332                                                                                           Lego Batman 3: Beyond Gotham
## 4333                                                                                                         Tekken Advance
## 4334                                                                                          Shin Megami Tensei: Persona 3
## 4335                                                                                                                Persona
## 4336                                                                                      Hot Wheels: Stunt Track Challenge
## 4337                                                                                                      My Fashion Studio
## 4338                                                                                  Maze Craze: A Game of Cops 'n Robbers
## 4339                                                                                                     Mobile Suit Gundam
## 4340                                                                                                            TNA iMPACT!
## 4341                                                                               Pirates of the Caribbean: At World's End
## 4342                                                                                                         Bee Movie Game
## 4343                                                                                                        Sega Rally Revo
## 4344                                                                                                     SingStar Take That
## 4345                                                                                               Final Fantasy Collection
## 4346                                                                     Disney Sing It! High School Musical 3: Senior Year
## 4347                                                                                       Samurai Warriors: Xtreme Legends
## 4348                                                                                                         LEGO Rock Band
## 4349                                                                                                            NHL FaceOff
## 4350                                                                                                    WWE WrestleMania 21
## 4351                                                                                                          NBA Live 2005
## 4352                                                                                                             F.E.A.R. 3
## 4353                                                                                                            Defender II
## 4354                                                                                                   WWE Day of Reckoning
## 4355                                                                                                            NBA Live 10
## 4356                                                                                                ATV Quad Power Racing 2
## 4357                                                                          Harry Potter and the Deathly Hallows - Part 1
## 4358                                                                           Walt Disney World Quest: Magical Racing Tour
## 4359                                                                                              Pro Evolution Soccer 2017
## 4360                                                                                                             Sled Storm
## 4361                                                                                                          Vandal Hearts
## 4362                                                                                              Dead or Alive: Dimensions
## 4363                                                                                                    Disney Infinity 3.0
## 4364                                                                                                         We Sing Encore
## 4365                                                                                             Wolfenstein: The New Order
## 4366                                                                                                               Deadpool
## 4367                                                                                                             Jawbreaker
## 4368                                                                                             Scooby-Doo! Mystery Mayhem
## 4369                                                                                                             Watch Dogs
## 4370                                                                                               Mario Golf: Advance Tour
## 4371                                                                                              Celebrity Sports Showdown
## 4372                                                                                                             F.E.A.R. 3
## 4373                                                                                                    Disney Guilty Party
## 4374                                                                                                Silent Hill: Homecoming
## 4375                                                                                     Yu-Gi-Oh! Capsule Monster Coliseum
## 4376                                                                                         Warhammer 40,000: Space Marine
## 4377                                                                                          Discovery Kids: Kitten Corner
## 4378                                                                                           Rock Band Country Track Pack
## 4379                                                                                              Major League Baseball 2K6
## 4380                                                                                                  Brunswick Pro Bowling
## 4381                                                                                               Jampack Volume 13 (RP-M)
## 4382                                                                                          World Soccer Winning Eleven 9
## 4383                                                                                                          NBA Live 2000
## 4384                                                                           Teenage Mutant Ninja Turtles 2: Battle Nexus
## 4385                                                                          SpongeBob SquarePants: Lights, Camera, Pants!
## 4386                                                                                                              The Thing
## 4387                                                                                                            Van Helsing
## 4388                                                                                               Mario Tennis Ultra Smash
## 4389                                                                                                        Virtua Tennis 4
## 4390                                                                                   X-Men Legends II: Rise of Apocalypse
## 4391                                                                     Naruto Shippuden: Ultimate Ninja Storm Generations
## 4392                                                                                             Wolfenstein: The New Order
## 4393                                                                                                  Skylanders: Trap Team
## 4394                                                                                                  Worms: Open Warfare 2
## 4395                                                                Transformers: Revenge of the Fallen (Wii & PS2 Version)
## 4396                                                                                                      Spawn: Armageddon
## 4397                                                                                               The Godfather (US sales)
## 4398                                                                                    Sid Meier's Civilization Revolution
## 4399                                                                                                       World Stadium EX
## 4400                                                                                              Tiger Woods PGA Tour 2003
## 4401                                                                                           Battlefield 2: Modern Combat
## 4402                                                                                                   50 Cent: Bulletproof
## 4403                                                                                                    Densetsu no Stafi 2
## 4404                                                                                                       Independence Day
## 4405                                                                                             Tony Hawk's Proving Ground
## 4406                                                                                                         Chocobo Racing
## 4407                                                                               Disney Infinity 2.0: Marvel Super Heroes
## 4408                                                                                LEGO Star Wars II: The Original Trilogy
## 4409                                                                                              Viking: Battle for Asgard
## 4410                                                                                                           Petz: Catz 2
## 4411                                                                                      Dragon Quest Heroes: Rocket Slime
## 4412                                                                                   Gundam SEED: Federation vs. Z.A.F.T.
## 4413                                                                                               Ms. Pac-Man Maze Madness
## 4414                                                                                             Blood Omen: Legacy of Kain
## 4415                                                                                                      Super Bomberman 4
## 4416                                                                                                                  Fable
## 4417                                                                                      Family Fest Presents Circus Games
## 4418                                                                                Dance Dance Revolution: Hottest Party 3
## 4419                                                                                                           Bomberman II
## 4420                                                                                                          Duke Nukem 64
## 4421                                                                  Transformers: Dark of the Moon - Autobots/Decepticons
## 4422                                                                         The Urbz: Sims in the City (all regions sales)
## 4423                                                                          SpongeBob SquarePants: Lights, Camera, Pants!
## 4424                                                                            Super Robot Taisen OG: Original Generations
## 4425                                                                                                                G-Force
## 4426                                                                                        Army Men World War: Final Front
## 4427                                                                                        Transformers: Fall of Cybertron
## 4428                                                                                SOCOM: U.S. Navy SEALs Fireteam Bravo 3
## 4429                                                                                                           MX Unleashed
## 4430                                                                                              Puppy Luv: Spa and Resort
## 4431                                                                                          Jikkyou Powerful Pro Yakyuu 9
## 4432                                                                                                          Grind Session
## 4433                                                                                         Naruto: Gekito Ninja Taisen! 3
## 4434                                                                                                          Madden NFL 12
## 4435                                                                                                            Wario World
## 4436                                                                                                     DmC: Devil May Cry
## 4437                                                                                             Scooby-Doo! Mystery Mayhem
## 4438                                                                                                         Super Breakout
## 4439                                                                                                         FIFA Soccer 13
## 4440                                                                                The Legend of Spyro: Dawn of the Dragon
## 4441                                                              Taiko no Tatsujin: Doki! Shinkyoku Darake no Haru Matsuri
## 4442                                                                                                     Samurai Warriors 3
## 4443                                                                                     Ben 10 Alien Force: Vilgax Attacks
## 4444                                                                                                        TimeSplitters 2
## 4445                                                                                           Battlebots: Design & Destroy
## 4446                                                                                  Robert Ludlum's The Bourne Conspiracy
## 4447                                                                                     Eternal Darkness: Sanity's Requiem
## 4448                                                                                        Food Network: Cook or Be Cooked
## 4449                                                                                                  Power Rangers: S.P.D.
## 4450                                                                                               Naruto: Ultimate Ninja 3
## 4451                                                                                                           The Darkness
## 4452                                                                                             Thrillville: Off the Rails
## 4453                                                                                                  Jump Start Pet Rescue
## 4454                                                                                                        SingStar Motown
## 4455                                                                                                          Child of Eden
## 4456                                                                                                Neon Genesis Evangelion
## 4457                                                                                       Mobile Suit Gundam: One Year War
## 4458                                                                                       Spider-Man: Shattered Dimensions
## 4459                                                                                       Tongari Boushi to Mahou no Otana
## 4460                                                                                                        NFL Blitz 20-03
## 4461                                                                                      SpongeBob's Atlantis SquarePantis
## 4462                                                                                                         Eternal Sonata
## 4463                                                                                                         SingStar Queen
## 4464                                                                                                     Karaoke Revolution
## 4465                                                                                            Star Wars: Jedi Starfighter
## 4466                                                                                                           Walk it Out!
## 4467                                                                                            Classic NES Series: Metroid
## 4468                                                                                       Nicktoons: Attack of the Toybots
## 4469                                                                                                                 Primal
## 4470                                                                                      Need for Speed: Shift 2 Unleashed
## 4471                                                                                             Yu-Gi-Oh! 5D's Tag Force 4
## 4472                                                                                                         Ninja Gaiden 3
## 4473                                                                                                              Band Hero
## 4474                                                                                           Need for Speed Underground 2
## 4475                                                                                                        Madden NFL 2002
## 4476                                                                                                 007: Quantum of Solace
## 4477                                                                                                     Master of Illusion
## 4478                                                                                               Spec Ops: Covert Assault
## 4479                                                                                                             SSX Tricky
## 4480                                                                                                  Flight Control Rocket
## 4481                                                                                                            Tetris Axis
## 4482                                                                                   Borderlands: The Handsome Collection
## 4483                                                                                                          Sleeping Dogs
## 4484                                                         The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 4485                                                                                                  NiGHTS into dreams...
## 4486                                                                              Star Wars The Clone Wars: Republic Heroes
## 4487                                                                                                     NCAA Football 2004
## 4488                                                                                                               Bionicle
## 4489                                                                                                        Hyrule Warriors
## 4490                                                                                                        DanceStar Party
## 4491                                                                      Naruto Shippuden: Ultimate Ninja Storm Revolution
## 4492                                                                                                           Naughty Bear
## 4493                                                                                                               MLB 2002
## 4494                                                                                                               Deadpool
## 4495                                                                                           Lego Batman 3: Beyond Gotham
## 4496                                                                                                       MLB 14: The Show
## 4497                                                                                            Devil May Cry HD Collection
## 4498                                                                                                Hyperdimension Neptunia
## 4499                                                                                                          TimeSplitters
## 4500                                                                                                           Barnstorming
## 4501                                                                                InuYasha: The Secret of the Cursed Mask
## 4502                                                                                      The Powerpuff Girls: Him and Seek
## 4503                                                                                                        Mega Man Zero 2
## 4504                                                                                                       My Spanish Coach
## 4505                                                                                 Wonder Project J: Kikai no Shonen Pino
## 4506                                                                                                               Payday 2
## 4507                                                                                                               WWE 2K16
## 4508                                                                             Dragon Ball Z: Shin Budokai - Another Road
## 4509                                                                The Fairly Odd Parents: Game Boy Advance Video Volume 1
## 4510                                                                                                    Mass Effect Trilogy
## 4511                                                                                           Ghostbusters: The Video Game
## 4512                                                                                         Hunter: The Reckoning  Wayward
## 4513                                                                                                        Mischief Makers
## 4514                                                                                                             WipEout 64
## 4515                                                                                                       EyeToy: AntiGrav
## 4516                                                                                          Dora the Explorer: Dora Puppy
## 4517                                                                                            EverQuest Online Adventures
## 4518                                                                                                               OkamiDen
## 4519                                                                                                          Cool Boarders
## 4520                                                                                                         Hometown Story
## 4521                                                                                                           Just Dance 4
## 4522                                                                                       Mobile Suit Gundam: Zeonic Front
## 4523                                                                                                               Monopoly
## 4524                                                                                                          TouchMaster 3
## 4525                                                                                                           Dawn of Mana
## 4526                                                                                            Castlevania: Dawn of Sorrow
## 4527                                                                                                            Max Payne 3
## 4528                                                                                            Barbie: Groom and Glam Pups
## 4529                                                                                  Tales of the World: Radiant Mythology
## 4530                                                                                                            Petz Bunnyz
## 4531                                                                                                         Alpha Protocol
## 4532                                                                                             Wolfenstein: The Old Blood
## 4533                                                                                                             Deer Drive
## 4534                                                                                                         Petz: Horsez 2
## 4535                                                                                                         Rayman Legends
## 4536                                                                                                        Madden NFL 2003
## 4537                                                                                                      Backyard Baseball
## 4538                                                                                                Midway Arcade Treasures
## 4539                                                                                                         Disney Sing It
## 4540                                                                                     Remington Great American Bird Hunt
## 4541                                                                                           Microsoft Flight Simulator X
## 4542                                                                                               Bakugan: Battle Brawlers
## 4543                                                                                                         NHL FaceOff 99
## 4544                                                                                               SEGA Classics Collection
## 4545                                                                                                Crash: Mind Over Mutant
## 4546                                                                                                Naruto: Ninja Council 3
## 4547                                                                               Dai-2-Ji Super Robot Taisen Z: Hakai-hen
## 4548                                                                                 Neon Genesis Evangelion 2nd Impression
## 4549                                                                                                             NBA Street
## 4550                                                                                                           Def Jam Icon
## 4551                                                                                             2014 FIFA World Cup Brazil
## 4552                                                                                 The Legend of Spyro: The Eternal Night
## 4553                                                                               Atelier Totori: The Adventurer of Arland
## 4554                                                                                                Mega Man Battle Network
## 4555                                                                                                     Juiced: Eliminator
## 4556                                                                                                             25 to Life
## 4557                                                                                                                NHL 2K6
## 4558                                                                                             Medal of Honor: Rising Sun
## 4559                                                                                                               The Sims
## 4560                                                                                                             Dog's Life
## 4561                                                                                                            The X Files
## 4562                                                                                                      Super Wagyan Land
## 4563                                                                                                                 Rascal
## 4564                                                                                              Barbie: Jet, Set & Style!
## 4565                                                                                         Tony Hawk's American Wasteland
## 4566                                                                                     Command & Conquer 3: Tiberium Wars
## 4567                                                                                     Sin and Punishment: Star Successor
## 4568                                                                                                Crash: Mind Over Mutant
## 4569                                                                                     Ben 10 Alien Force: Vilgax Attacks
## 4570                                                                                      Famicom Mini: Super Mario Bros. 2
## 4571                                                                                                            Colony Wars
## 4572                                                                                                 All-Star Baseball 2004
## 4573                                                                                                     Big Strike Bowling
## 4574                                                                                              Skylanders: SuperChargers
## 4575                                                                                     Ben 10 Alien Force: Vilgax Attacks
## 4576                                                                                                    NASCAR Thunder 2002
## 4577                                                                                       Batman: Arkham Origins Blackgate
## 4578                                                                                       Zone of the Enders HD Collection
## 4579                                                                                                                Grandia
## 4580                                                                                       2010 FIFA World Cup South Africa
## 4581                                                                                                           ESPN NHL 2K5
## 4582                                                        Yu-Gi-Oh! 7 Trials to Glory: World Championship Tournament 2005
## 4583                                                                                                  Hot Wheels World Race
## 4584                                                                         Avatar: The Last Airbender - The Burning Earth
## 4585                                                                                          Superman: Shadow of Apokolips
## 4586                                                                                                          Trials Fusion
## 4587                                                                                                       American Chopper
## 4588                                                                                                     NASCAR Kart Racing
## 4589                                                                             Star Wars Trilogy: Apprentice of the Force
## 4590                                                                                                Guitar Hero: Smash Hits
## 4591                                                                        Lemony Snicket's A Series of Unfortunate Events
## 4592                                                                         JGTC: All-Japan Grand Touring Car Championship
## 4593                                                                                            Virtua Tennis 4: World Tour
## 4594                                                                                                        Arc the Lad III
## 4595                                                                                               Just Dance: Summer Party
## 4596                                                                                 SpongeBob's Truth or Square (US sales)
## 4597                                                                                  Mobile Suit Gundam: Gundam vs. Gundam
## 4598                                                                                                             Test Drive
## 4599                                                                                         Jikkyou Powerful Pro Yakyuu 11
## 4600                                                                                                         Petz: Horsez 2
## 4601                                                                 The Adventures of Jimmy Neutron Boy Genius: Jet Fusion
## 4602                                                                               Pirates of the Caribbean: At World's End
## 4603                                                                                                           Dr. Mario 64
## 4604                                                                                          Jikkyou Powerful Pro Yakyuu 6
## 4605                                                                                             Army Men: Sarge's Heroes 2
## 4606                                                                                             Rush 2: Extreme Racing USA
## 4607                                                                                                         NFL Blitz 2001
## 4608                                                                                  James Bond 007: Everything or Nothing
## 4609                                                                                                            NBA Live 06
## 4610                                                                                                       MLB 08: The Show
## 4611                                                                                                                 Horsez
## 4612                                                                                      Dance Dance Revolution Ultramix 2
## 4613                                                                                        Mega Man Anniversary Collection
## 4614                                                                                                Crash: Mind Over Mutant
## 4615                                                                                                        Super Famista 4
## 4616                                                                The Fairly Odd Parents: Game Boy Advance Video Volume 2
## 4617                                                                                               How to Train Your Dragon
## 4618                                                                                          Cabela's Legendary Adventures
## 4619                                                                                                       Story of Seasons
## 4620                                                                      Taiko no Tatsujin DS: Dororon! Youkai Daikessen!!
## 4621                                                                                    Harry Potter and the Goblet of Fire
## 4622                                                                                             Thrillville: Off the Rails
## 4623                                                                                                      Metro: Last Light
## 4624                                                                                                               NBA 2K11
## 4625                                                                                                            Mega Man X6
## 4626                                                                                                             BloodRayne
## 4627                                                                               Kumamon Bomber: Puzzle de Kumamon Taisou
## 4628                                                                                         Castlevania: Curse of Darkness
## 4629                                                                                                               NBA 2K13
## 4630                                                                                 International Superstar Soccer Pro '98
## 4631                                                                                                         LEGO Rock Band
## 4632                                                                                              Jimmy Neutron: Boy Genius
## 4633                                                                                                                  Black
## 4634                                                                            Double Pack: Finding Nemo / The Incredibles
## 4635                                                                                                     Spec Ops: The Line
## 4636                                                                                                           NHL Slapshot
## 4637                                                                                              Paper Mario: Color Splash
## 4638                                                                                Valkyrie Profile: Covenant of the Plume
## 4639                                                                                                               Vanquish
## 4640                                                                                                     Solitaire Overload
## 4641                                                                                                        TRON: Evolution
## 4642                                                                                       Lord of the Rings: The Third Age
## 4643                                                                               Pirates of the Caribbean: At World's End
## 4644                                                                                                     Mega Man Legends 2
## 4645                                                                                               X-Men vs. Street Fighter
## 4646                                                                                      Blazing Angels: Squadrons of WWII
## 4647                                                                              Zack & Wiki: Quest for Barbaros' Treasure
## 4648                                                                                                    High Rollers Casino
## 4649                                                                                                                   TERA
## 4650                                                                                    Attack on Titan: Humanity in Chains
## 4651                                                                                                          The Suffering
## 4652                                                                                              Cyber Troopers Virtual-On
## 4653                                                                                 Star Wars Starfighter: Special Edition
## 4654                                                                                       Animal Crossing: Amiibo Festival
## 4655                                                                                                                NBA Jam
## 4656                                                                                     Zone of the Enders: The 2nd Runner
## 4657                                                                                                        Just Dance 2014
## 4658                                                                                             Jampack Spring 2004 (RP-T)
## 4659                                                                                  Dexter's Laboratory Deesaster Strikes
## 4660                                                                                                       NFL GameDay 2004
## 4661                                                                                            Condemned: Criminal Origins
## 4662                                                                                         Scooby-Doo and the Cyber Chase
## 4663                                                                                                       Wheel of Fortune
## 4664                                                                                       Tomb Raider: The Last Revelation
## 4665                                                                                              pro evolution soccer 2011
## 4666                                                                                              Sega Rally Championship 2
## 4667                                                                                                               Quake II
## 4668                                                                                                    Crash of the Titans
## 4669                                                                                                        EA Sports UFC 2
## 4670                                                                                                       MLB 10: The Show
## 4671                                                                                          Wheel of Fortune: 2nd Edition
## 4672                                                                                     Tom Clancy's Rainbow Six: Lockdown
## 4673                                                                        Mobile Suit Gundam: Gundam vs. Gundam NEXT PLUS
## 4674                                                                                                              TimeShift
## 4675                                                                                                     Cool Boarders 2001
## 4676                                                                                                        Grudge Warriors
## 4677                                                                                                   Farming Simulator 17
## 4678                                                      World Soccer Jikkyou Winning Eleven 2000: U-23 Medal heno Chousen
## 4679                                                                                  Castlevania: The Dracula X Chronicles
## 4680                                                                                                     Mobile Suit Gundam
## 4681                                                                                                    Tom Clancy's HAWX 2
## 4682                                                                                                  Battlefield: Hardline
## 4683                                                                                              Jimmy Neutron: Boy Genius
## 4684                                                                                                      Itadaki Street DS
## 4685                                                                                               X-Men: The Official Game
## 4686                                                                                                               Terraria
## 4687                                                                                                        LEGO Dimensions
## 4688                                                                                         Football Manager Handheld 2011
## 4689                                                                                                    300: March to Glory
## 4690                                                                                                Marvel Super Hero Squad
## 4691                                                                                Call of Duty: Modern Warfare: Mobilized
## 4692                                                                                                                 NHL 15
## 4693                                                                                                         E0: Enemy Zero
## 4694                                                                                              Tom Clancy's The Division
## 4695                                                                                              Yu-Gi-Oh! GX: Tag Force 2
## 4696                                                                                                      Nicktoons: Unite!
## 4697                                                                                JumpStart: Escape from Adventure Island
## 4698                                                                                                   Green Day: Rock Band
## 4699                                                                                                          NASCAR Racing
## 4700                                                                                                                FIFA 14
## 4701                                                      Monotaro Dentetsu 2010: Sengoku Ishin no Hero Daishuugou! no Maki
## 4702                                                                                                      Cars: Race-O-Rama
## 4703                                                                               Boku no Natsuyasumi 2: Umi no Bouken Hen
## 4704                                                                                                                F1 2014
## 4705                                                                                           Command & Conquer: Red Alert
## 4706                                                                                      Cars: Mater-National Championship
## 4707                                                                                             Call of Duty: Black Ops II
## 4708                                                                               Ogre Battle 64: Person of Lordly Caliber
## 4709                                                                                  Superman: The New Superman Adventures
## 4710                                                                                                                Dig Dug
## 4711                                                                                                               BioShock
## 4712                                                                                           The Terminator: Dawn of Fate
## 4713                                                                                           Rogue Galaxy: Director's Cut
## 4714                                                                                                           Armored Core
## 4715                                                                                                             The Smurfs
## 4716                                                                                                        Densha De Go! 2
## 4717                                                                                                Medal of Honor Heroes 2
## 4718                                                                                                             Top Spin 4
## 4719                                                                  James Patterson Women's Murder Club: Games of Passion
## 4720                                                                                                              Band Hero
## 4721                                                                                            Armored Core 2: Another Age
## 4722                                                                                             Buzz! Junior: Jungle Party
## 4723                                                                                                God Eater 2: Rage Burst
## 4724                                                                                         Mortal Kombat: Deadly Alliance
## 4725                                                                                                               NBA 2K11
## 4726                                                                                         AKB1/48: Idol to Koishitara...
## 4727                                                                                                            Pro Pinball
## 4728                                                                                              NiGHTS: Journey of Dreams
## 4729                                                                                                            '98 Koshien
## 4730                                                                                             Harvest Moon: Grand Bazaar
## 4731                                                                                                                NBA 2K9
## 4732                                                                          Yu-Gi-Oh! The Eternal Duelist Soul (JP sales)
## 4733                                                                                                                     Up
## 4734                                                                                         Hatsune Miku: Project Diva 2nd
## 4735                                                                                            Marvel: Ultimate Alliance 2
## 4736                                                                                             Monster Jam: Urban Assault
## 4737                                                                                         Call of Duty: Advanced Warfare
## 4738                                                                                                 Mario no Super Picross
## 4739                                                                                     UEFA Euro 2008 Austria-Switzerland
## 4740                                                                                     Ed, Edd n Eddy: The Mis-Edventures
## 4741                                                                                         Jikkyou Powerful Pro Yakuu '94
## 4742                                                                                                Disney's Tarzan Untamed
## 4743                                                                                                          WWE All Stars
## 4744                                                                                                   Green Day: Rock Band
## 4745                                                                          Harry Potter and the Deathly Hallows - Part 1
## 4746                                                                                              Resistance: Burning Skies
## 4747                                                                                           Battlefield 2: Modern Combat
## 4748                                                                                                         Rocksmith 2014
## 4749                                                                                                    Knockout Kings 2001
## 4750                                                                                                  From Russia With Love
## 4751                                                                                                         Fantastic Pets
## 4752                                                                                              BlazBlue: Continuum Shift
## 4753                                                                                                     Duke Nukem Forever
## 4754                                                                                                         Dragon Quest X
## 4755                                                                                        Minority Report: Everybody Runs
## 4756                                                                                                       Katamari Forever
## 4757                                              Disney's Hercules / Disney's The Jungle Book: Groove Party / A Bug's Life
## 4758                                                                                                       NFL GameDay 2002
## 4759                                                                                                                  Pengo
## 4760                                                                                             Spider-Man: Web of Shadows
## 4761                                                                                                           Naughty Bear
## 4762                                                                                                             Mouse Trap
## 4763                                                                                              Tak and the Power of Juju
## 4764                                                                                                     Six Flags Fun Park
## 4765                                                                                                      Just Dance Kids 2
## 4766                                                                                                      Beowulf: The Game
## 4767                                                                                                                NBA Jam
## 4768                                                                                 Rune Factory 3: A Fantasy Harvest Moon
## 4769                                                                                 Dragon Quest Builders: Revive Alefgard
## 4770                                                                              Star Wars The Clone Wars: Republic Heroes
## 4771                                                                                                      Tales of Zestiria
## 4772                                                                                Metal Gear Solid: The Legacy Collection
## 4773                                                                                     Medarot: Kabuto / Kuwagata Version
## 4774                                                                                                               NBA 2K10
## 4775                                                                                                               Defender
## 4776                                                                                                       NFL GameDay 2003
## 4777                                                                                                            TNA iMPACT!
## 4778                                                                                Taiko no Tatsujin Wii: Dodon to 2 Yome!
## 4779                                                                                                            Congo Bongo
## 4780                                                                                                Gauntlet: Seven Sorrows
## 4781                                                                                      Harry Potter: Quidditch World Cup
## 4782                                                                                           Warriors Orochi 2 (JP sales)
## 4783                                                                                          Cabela's Big Game Hunter 2010
## 4784                                                                                                               Overlord
## 4785                                                                               The Chronicles of Narnia: Prince Caspian
## 4786                                                                                The Incredibles: Rise of the Underminer
## 4787                                                                                                        Life is Strange
## 4788                                                                                                              Pet in TV
## 4789                                                                                                         Battalion Wars
## 4790                                                                                                      NBA ShootOut 2000
## 4791                                                                                            Power Rangers: Dino Thunder
## 4792                                                                                                        Samurai Shodown
## 4793                                                                                                    Mass Effect Trilogy
## 4794                                                                                                      The Wonderful 101
## 4795                                                                                                SpongeBob SquigglePants
## 4796                                                                                                        Fighting Vipers
## 4797                                                           Yu-Gi-Oh! 5D's Stardust Accelerator: World Championship 2009
## 4798                                                                                                  NCAA GameBreaker 2000
## 4799                                                                                                          Asura's Wrath
## 4800                                                                                The Legend of Spyro: Dawn of the Dragon
## 4801                                                                                 AKB1/48: Idol to Guam de Koishitara...
## 4802                                                                                              NFL Quarterback Club 2000
## 4803                                                                                    Mortal Kombat Mythologies: Sub-Zero
## 4804                                                                                                   RR64: Ridge Racer 64
## 4805                                                                                                         Top Gear Rally
## 4806                                                                                       18 Wheeler: American Pro Trucker
## 4807                                                     Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 4808                                                                                                                 Wall-E
## 4809                                                                                                        Atari Anthology
## 4810                                                                                                                FIFA 14
## 4811                                                                                               Bugs Bunny: Lost in Time
## 4812                                                                                                 Hot Wheels: Beat That!
## 4813                                                                                                               MLB 2006
## 4814                                                                                                       Ragnarok Odyssey
## 4815                                                                                                  Brunswick Pro Bowling
## 4816                                                                                                        The Gunstringer
## 4817                                                                                             Rocket Power: Dream Scheme
## 4818                                                                                              Marvel: Ultimate Alliance
## 4819                                                                                           LEGO Harry Potter: Years 5-7
## 4820                                                              My Virtual Tutor: Reading Adventure First to Second Grade
## 4821                                                                                                   MX vs. ATV Unleashed
## 4822                                                                                                         FIFA Soccer 13
## 4823                                                                                             Rampage: Total Destruction
## 4824                                                                                                    Style Lab: Makeover
## 4825                                                                                             The Urbz: Sims in the City
## 4826                                                                                                   Road Rash: Jailbreak
## 4827                                                                     Disney Sing It! High School Musical 3: Senior Year
## 4828                                                                                                               Mother 3
## 4829                                                                                         Nicktoons: Freeze Frame Frenzy
## 4830                                                                                                  Monster Trucks Mayhem
## 4831                                                                                                    You Don't Know Jack
## 4832                                                                                           Rapala Pro Bass Fishing 2010
## 4833                                                                                            WWE SmackDown! vs. RAW 2006
## 4834                                                                                                               Mafia II
## 4835                                                                                                       Avatar: The Game
## 4836                                                                                   Mystery Dungeon: Shiren the Wanderer
## 4837                                                                                              Pro Evolution Soccer 2016
## 4838                                                                                                  Star Wars: Clone Wars
## 4839                                                                                                          NBA Live 2002
## 4840                                                                                                 Sega Superstars Tennis
## 4841                                                                                                             Spore Hero
## 4842                                                                                    Winter Sports 2: The Next Challenge
## 4843                                                                                                    Boku no Natsuyasumi
## 4844                                                                                                                I-Ninja
## 4845                                                         Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 4846                                                                                   Moshi Monsters: Moshlings Theme Park
## 4847                                                                                           Ghostbusters: The Video Game
## 4848                                                                                                      Command & Conquer
## 4849                                                                                        Harvest Moon: Save the Homeland
## 4850                                                                                            SD Gundam G Generation Seed
## 4851                                                                                              Call of Duty: Finest Hour
## 4852                                                                                              Naruto: Path of the Ninja
## 4853                                                                                                     Tales of Phantasia
## 4854                                                                                             Speed Racer: The Videogame
## 4855                                                                                          Castlevania: Portrait of Ruin
## 4856                                                                                                   Suzuki TT Superbikes
## 4857                                                                                                           Rumble Roses
## 4858                                                                                                    Disney Infinity 3.0
## 4859                                                                                               Tomb Raider: Anniversary
## 4860                                                                              Sherlock Holmes: The Mystery of the Mummy
## 4861                                                                              Fantastic Four: Rise of the Silver Surfer
## 4862                                                                                                    Ultimate Spider-Man
## 4863                                                                                                      Littlest Pet Shop
## 4864                                                                                            Juiced 2: Hot Import Nights
## 4865                                                                              Star Wars The Clone Wars: Republic Heroes
## 4866                                                                                                                 NHL 99
## 4867                                                                                             LEGO The Lord of the Rings
## 4868                                                                                                          Danball Senki
## 4869                                                                                   No More Heroes 2: Desperate Struggle
## 4870                                                                                                            NASCAR Heat
## 4871                                                                                                              Planet 51
## 4872                                                                                                            Bloody Roar
## 4873                                                                                                          Bump 'n' Jump
## 4874                                                                                Mobile Suit Gundam: Lost War Chronicles
## 4875                                                                                                Legends of WrestleMania
## 4876                                                                                                         Fishing Resort
## 4877                                                                                                  Disney's Brother Bear
## 4878                                                                                                         Armored Core V
## 4879                                                                                                            NBA Live 09
## 4880                                                                                                          Saints Row IV
## 4881                                                                                                          Mass Effect 2
## 4882                                                                          Harry Potter and the Deathly Hallows - Part 1
## 4883                                                                                              The House of The Dead III
## 4884                                                                                                         Project X Zone
## 4885                                                                                                                NBA Jam
## 4886                                                                                          Fire Emblem: Fuuin no Tsurugi
## 4887                                                                                                             Dishonored
## 4888                                                                                                         Dark Souls III
## 4889                                                                                                                NBA Jam
## 4890                                                                                      Dancing with the Stars: We Dance!
## 4891                                                                                                            NBA Live 09
## 4892                                                                                                    Ener-G: Gym Rockets
## 4893                                                                                                            Laser Blast
## 4894                                                                                                    Madden NFL Football
## 4895                                                                                   Thrasher Presents: Skate and Destroy
## 4896                                                                      Are You Smarter than a 5th Grader? Make the Grade
## 4897                                                                                                         Donkey Konga 2
## 4898                                                                                 SpongeBob's Truth or Square (US sales)
## 4899                                                                                      Tear Ring Saga Yutona Eiyuu Senki
## 4900                                                                                        Transformers: Fall of Cybertron
## 4901                                                                                                         Alpha Protocol
## 4902                                                                                            Metal Gear Solid HD Edition
## 4903                                                                                                                FIFA 12
## 4904                                                                                       Taiko no Tatsujin Wii: Ketteiban
## 4905                                                                                                                  SSX 3
## 4906                                                                                         Combat of Giants: Dinosaurs 3D
## 4907                                                                                                        Madden NFL 2005
## 4908                                                                                                 All-Star Baseball 2000
## 4909                                                                                                         Custom Robo V2
## 4910                                                                                                         Extreme-G: XG2
## 4911                                                                                             BattleTanx: Global Assault
## 4912                                                                  Final Fantasy Crystal Chronicles: The Crystal Bearers
## 4913                                                                                 SpongeBob's Truth or Square (US sales)
## 4914                                                                                              Until Dawn: Rush of Blood
## 4915                                                                                       Chibi-Robo! Plug into Adventure!
## 4916                                                                                                       Sonic Lost World
## 4917                                                                                         Super Monkey Ball: Step & Roll
## 4918                                                                                                  Skylanders SWAP Force
## 4919                                                                                                             Iron Man 2
## 4920                                                                                             Jampack Winter 2003 (RP-T)
## 4921                                                                              Star Wars The Clone Wars: Republic Heroes
## 4922                                                                                             Monster Jam: Urban Assault
## 4923                                                                                               Kengo: Master of Bushido
## 4924                                                                                                           Blood Omen 2
## 4925                                                                                                       Monopoly Streets
## 4926                                                                                                Super Fire ProWrestling
## 4927                                                                                             Cabela's Dangerous Hunts 2
## 4928                                                                                                 Condemned 2: Bloodshot
## 4929                                                                                 Disney Princess: Enchanting Storybooks
## 4930                                                                                                            Chessmaster
## 4931                                                                                                             Fatal Fury
## 4932                                                           From TV Animation One Piece: Yume no Lufy Kaizokudan Tanjou!
## 4933                                                                                                        The Darkness II
## 4934                                                                                                Ice Age 2: The Meltdown
## 4935                                                                                                             The Sims 2
## 4936                                                                                                    Hitman: Blood Money
## 4937                                                                                                        Super Famista 3
## 4938                                                                                              Advance Wars: Dual Strike
## 4939                                                                                                        Auto Modellista
## 4940                                                                                                     WipeOut 3 The Game
## 4941                                                                                                       MLB 15: The Show
## 4942                                                                              Tom Clancy's Ghost Recon 2: Summit Strike
## 4943                                                                                                Tiger Woods PGA Tour 08
## 4944                                                                                                  F1 2016 (Codemasters)
## 4945                                                                                                        Just Dance 2015
## 4946                                                                                  Robert Ludlum's The Bourne Conspiracy
## 4947                                                                                            Samurai Warriors Chronicles
## 4948                                                                       Karaoke Revolution Presents American Idol Encore
## 4949                                                                                                                Airlock
## 4950                                                                                                    Tokimeki Memorial 2
## 4951                                                                                     Hooked! Again: Real Motion Fishing
## 4952                                                                         SpongeBob vs The Big One: Beach Party Cook Off
## 4953                                                                                         One Piece: Unlimited World Red
## 4954                                                                                                     EA Sports Active 2
## 4955                                                                                                              MotoGP 08
## 4956                                                                                                Red Faction: Armageddon
## 4957                                                                                      Harry Potter: Quidditch World Cup
## 4958                                                                                                      Dungeon Siege III
## 4959                                                                                       Evil Dead: Fistfull of Boomstick
## 4960                                                                                                Silent Hill: Homecoming
## 4961                                                                                                         Triple Play 97
## 4962                                                                                   Sonic & All-Stars Racing Transformed
## 4963                                                                                                           Super Soccer
## 4964                                                                                           Shin Megami Tensei: Nocturne
## 4965                                                                                                    Wario Land II (GBC)
## 4966                                                                                     San Francisco Rush: Extreme Racing
## 4967                                                                    Bakusou Dekotora Densetsu: Otoko Ippiki Yume Kaidoi
## 4968                                                                                                 Farming Simulator 2013
## 4969                                                                                                 ESPN College Hoops 2K5
## 4970                                                                                             Looney Tunes: Acme Arsenal
## 4971                                                                                         SD Gundam G Generation Spirits
## 4972                                                                                                  Dance Party: Pop Hits
## 4973                                                                                              Marvel: Ultimate Alliance
## 4974                                                                                                     The Cat in the Hat
## 4975                                                                                             Diner Dash: Sizzle & Serve
## 4976                                                                         Shin Megami Tensei: Devil Survivor Overclocked
## 4977                                                                                                       NFL GameDay 2002
## 4978                                                                                    Naruto: Clash of Ninja Revolution 2
## 4979                                                                                                       Turok: Evolution
## 4980                                                                                                       NCAA Football 08
## 4981                                                                          Jam Sessions: Sing and Play Guitar (US sales)
## 4982                                                            Mobile Suit Gundam: Giren no Yabou Zeon Dokuritsu Sensouden
## 4983                                                                                                                Ice Age
## 4984                                                                                                 Sega Superstars Tennis
## 4985                                                                                                             Headhunter
## 4986                                                                                                                FIFA 14
## 4987                                                                                                       Yoshi Touch & Go
## 4988                                                                                              Viking: Battle for Asgard
## 4989                                                                                                            Rock Band 4
## 4990                                                                                     Shin Megami Tensei: Devil Summoner
## 4991                                                                                                   Junior Classic Games
## 4992                                                                                 Marvel Nemesis: Rise of the Imperfects
## 4993                                                                                                     ESPN Extreme Games
## 4994                                                                                                  Brunswick Pro Bowling
## 4995                                                                                              Ninja: Shadow of Darkness
## 4996                                                                                             Wolfenstein: The New Order
## 4997                                                                                               SD Gundam G Generation-F
## 4998                                                                                                     Bratz: Rock Angelz
## 4999                                                                                                                FlatOut
## 5000                                                                          Phoenix Wright: Ace Attorney - Dual Destinies
## 5001                                                                                                          Battlefield 1
## 5002                                                                                                                  SSX 3
## 5003                                                                                       Metal Gear Solid: Snake Eater 3D
## 5004                                                                                      Raving Rabbids: Travel in Time 3D
## 5005                                                                                                       NCAA Football 11
## 5006                                                                                    Lilo & Stitch 2: H盲msterviel Havoc
## 5007                                                                                                               LocoRoco
## 5008                                                                                                Risk: Global Domination
## 5009                                                                                               Deus Ex: Mankind Divided
## 5010                                                                                         Mobile Suit Gundam version 2.0
## 5011                                                                                                                FIFA 17
## 5012                                                                                                         Grandia Xtreme
## 5013                                                                                   Tamagotchi Connection: Corner Shop 3
## 5014                                                                                                           Silent Scope
## 5015                                                                                                Final Fantasy Adventure
## 5016                                                                        Dora The Explorer: Dora Saves the Snow Princess
## 5017                                                                                                    The Incredible Hulk
## 5018                                                                                         Mercenaries 2: World in Flames
## 5019                                                                                                  Saints Row: The Third
## 5020                                                                                         Ghost Trick: Phantom Detective
## 5021                                                                                    Tokimeki Memorial: Forever with You
## 5022                                                                                                            MediEvil II
## 5023                                                                                                  Hunter: The Reckoning
## 5024                                                                                                     MX vs. ATV Untamed
## 5025                                                                                              Rogue Trip: Vacation 2012
## 5026                                                                                                       Phantasy Star è„´
## 5027                                                                                                      Dawn of Discovery
## 5028                                                                                            Dai-4-Ji Super Robot Taisen
## 5029                                                                                                        Tales of Hearts
## 5030                                                                                                     Get Fit with Mel B
## 5031                                                                                         Ice Age: Dawn of the Dinosaurs
## 5032                                                                                                        Pokemon Channel
## 5033                                                                                          Taiko no Tatsujin Portable DX
## 5034                                                                               Etrian Odyssey IV: Legends of the Titans
## 5035                                                                               Sesame Street: Elmo's A-to-Zoo Adventure
## 5036                                                                                                             Iron Man 2
## 5037                                                                                                  Moto Racer World Tour
## 5038                                                                                                     Virtua Tennis 2009
## 5039                                                                                                         The Dog Island
## 5040                                                                                                   NCAA Final Four 2000
## 5041                                                                                            Madagascar: Escape 2 Africa
## 5042                                                                                                                Hangman
## 5043                                                                                                  Need for Speed: Nitro
## 5044                                                                              Naruto Shippuden: Ultimate Ninja Heroes 3
## 5045                                                                                                Tiger Woods PGA Tour 08
## 5046                                                                                          Cabela's Dangerous Hunts 2009
## 5047                                                                                              Petz Rescue: Wildlife Vet
## 5048                                                                                      Dancing with the Stars: We Dance!
## 5049                                                                                                     Age of Empires III
## 5050                                                                                                          Madden NFL 11
## 5051                                                                                                               Gravitar
## 5052                                                                                                          EyeToy Play 2
## 5053                                                                              Mobile Suit Gundam: Extreme VS Full Boost
## 5054                                                                                      Dance Dance Revolution Ultramix 3
## 5055                                                                                               LEGO Marvel Super Heroes
## 5056                                                                                             WWE SmackDown vs. Raw 2011
## 5057                                                                                           Pro Evolution Soccer 2011 3D
## 5058                                                                                                        Just Dance 2014
## 5059                                                                                                        Wii Sports Club
## 5060                                                                               Harry Potter and the Prisoner of Azkaban
## 5061                                                                                            Paws & Claws: Pampered Pets
## 5062                                                                                                           Puppy Palace
## 5063                                                                                                    Peppa Pig: The Game
## 5064                                                                                                      Skylanders Giants
## 5065                                                                                                                 GRID 2
## 5066                                                                                                                Solaris
## 5067                                                                                                     Resident Evil Zero
## 5068                                                                                                    Super Dragon Ball Z
## 5069                                                                                       Scooby-Doo! and the Spooky Swamp
## 5070                                                                                              Petz Rescue: Ocean Patrol
## 5071                                                                                                     The Golden Compass
## 5072                                                                                                                Tobal 2
## 5073                                                                                                 Farming Simulator 2015
## 5074                                                                                                               NBA 2K10
## 5075                                                                                                              Persona 5
## 5076                                                                                                         Disney Sing It
## 5077                                                                                                Tiger Woods PGA Tour 09
## 5078                                                                                                    Ultimate Spider-Man
## 5079                                                                                                  NBA Inside Drive 2002
## 5080                                                                                              Major League Baseball 2K6
## 5081                                                                                                   Imagine: Party Babyz
## 5082                                                                                     LEGO Star Wars III: The Clone Wars
## 5083                                                                                                                NBA 2K7
## 5084                                                                                             Kileak: The DNA Imperative
## 5085                                                                                                           Petz: Catz 2
## 5086                                                                                                           Just Dance 4
## 5087                                                                                     Phantasy Star Portable 2: Infinity
## 5088                                                                                            Monsters, Inc. Scream Arena
## 5089                                                                                                       Reel Fishing III
## 5090                                                                                         Cabela's Deer Hunt 2005 Season
## 5091                                                                                       Monster Jam: Path of Destruction
## 5092                                                                                            Need for Speed: Hot Pursuit
## 5093                                                                                             Rampage: Total Destruction
## 5094                                                                                   High Heat Major League Baseball 2003
## 5095                                                                                                        Trivial Pursuit
## 5096                                                                                              Super Formation Soccer 94
## 5097                                                                                     Kingdom Under Fire: Circle of Doom
## 5098                                                                                                         Panzer Dragoon
## 5099                                                                                              Spider-Man: Friend or Foe
## 5100                                                                                     Yarudora Series Vol.1: Double Cast
## 5101                                                                                                         Rec Room Games
## 5102                                                                                                          EA Sports MMA
## 5103                                                                                       Guitar Hero On Tour: Modern Hits
## 5104                                                                                                                Quake 4
## 5105                                                                                                Tiger Woods PGA Tour 14
## 5106                                                                                                                  Skate
## 5107                                                                                          Cabela's Big Game Hunter 2012
## 5108                                                     Fushigi no Dungeon: Furai no Shiren 2 - Oni Shuurai! Shiren Shiro!
## 5109                                                                                                       Turok: Rage Wars
## 5110                                                                                       Scooby-Doo! Classic Creep Capers
## 5111                                                                                                                   Rage
## 5112                                                                                                             Dragonfire
## 5113                                                                                                            Custom Robo
## 5114                                                                                  Prince of Persia: The Forgotten Sands
## 5115                                                                                                BioShock The Collection
## 5116                                                                                Theatrhythm Final Fantasy: Curtain Call
## 5117                                                                                                                 DiRT 2
## 5118                                                                                                        Pac-Man World 2
## 5119                                                                                        Kotoba no Puzzle: Mojipittan DS
## 5120                                                                                                    Tomb Raider: Legend
## 5121                                                                                                          Rocket League
## 5122                                                                                                               The BIGS
## 5123                                                                              Barbie Horse Adventures: Blue Ribbon Race
## 5124                                                                                                Destiny: The Taken King
## 5125                                                                                              Skylanders: SuperChargers
## 5126                                                                                   The Legend of Spyro: A New Beginning
## 5127                                                                                                 Imagine: Salon Stylist
## 5128                                                                                            Juiced 2: Hot Import Nights
## 5129                                                                    Slime MoriMori Dragon Quest: Shougeki No Shippo Dan
## 5130                                                                                                      Dungeon Siege III
## 5131                                                                                               Hell's Kitchen: The Game
## 5132                                                                                                             DiRT Rally
## 5133                                                                                                 NFL Street 2 Unleashed
## 5134                                                                                                  Super Robot Taisen EX
## 5135                                                                                                          FIFA Street 2
## 5136                                                                                                     Virtua Tennis 2009
## 5137                                                                                                  Overlord: Dark Legend
## 5138                                                                                                      Bottom of the 9th
## 5139                                                                                 The Legend of Spyro: The Eternal Night
## 5140                                                                                                  Shin Megami Tensei II
## 5141                                                                              Harry Potter and the Order of the Phoenix
## 5142                                                                                                Wanted: Weapons of Fate
## 5143                                                                          Xenosaga Episode III: Also sprach Zarathustra
## 5144                                                                                                  Skylanders: Trap Team
## 5145                                                                                                 Rune Factory: Frontier
## 5146                                                                                                     Virtua Fighter 3tb
## 5147                                                                                    Medieval II: Total War Gold Edition
## 5148                                                                                                            Mini Ninjas
## 5149                                                                                      Naruto Shippuden: Ninja Destiny 2
## 5150                                                                                            Mini-Yonku GB: Let's & Go!!
## 5151                                                                                               Scribblenauts: Unlimited
## 5152                                                                         The House of the Dead: Overkill - Extended Cut
## 5153                                                                                              Marvel: Ultimate Alliance
## 5154                                                                                                   The Sims 2: Castaway
## 5155                                                                                                       NCAA Football 07
## 5156                                                                                                    Batman: Arkham City
## 5157                                                                                                          NBA Live 2003
## 5158                                                                             Fragile Dreams: Farewell Ruins of the Moon
## 5159                                                                                                 GoldenEye: Rogue Agent
## 5160                                                                                                Need for Speed: The Run
## 5161                                                                                                         Zero4 Champ RR
## 5162                                                                                          Dragon Ball Z: Infinite World
## 5163                                                                                                      Elite Beat Agents
## 5164                                                                                             Nonomura Byoin no Hitobito
## 5165                                                                                             ESPN X Games Skateboarding
## 5166                                                                                 Sid Meier's Civilization: Beyond Earth
## 5167                                                                                                                 NHL 15
## 5168                                                                                         Castlevania: Order of Ecclesia
## 5169                                                                        Build-A-Bear Workshop: A Friend Fur All Seasons
## 5170                                                                                            Dreamworks Madagascar Kartz
## 5171                                                                                                          Left 4 Dead 2
## 5172                                                                                                   Green Day: Rock Band
## 5173                                                                              999: Nine Hours, Nine Persons, Nine Doors
## 5174                                                                                        Super Fire ProWrestling Special
## 5175                                                                                                         Star Fox: Zero
## 5176                                                                                                                    SAW
## 5177                                                                                                        Yuu Yuu Hakusho
## 5178                                                                                                    Tom Clancy's HAWX 2
## 5179                                                                                                   Kamaitachi no Yoru 2
## 5180                                                                                   High Heat Major League Baseball 2004
## 5181                                                                                                                 Robots
## 5182                                                                                                                   NARC
## 5183                                                                                              One Piece: Gigant Battle!
## 5184                                                                                   Dragon Ball Z: Attack of the Saiyans
## 5185                                                                                                          My Horse & Me
## 5186                                                                                                        Bionic Commando
## 5187                                                                                                      Monster Rancher 3
## 5188                                                                                The Incredibles: Rise of the Underminer
## 5189                                                                                            Sword Art Online: Lost Song
## 5190                                                                                     MechWarrior 2: 31st Century Combat
## 5191                                                                                                      Zoo Tycoon (2013)
## 5192                                                                                            Hamtaro: Ham-Ham Heartbreak
## 5193                                                                                                     Okage: Shadow King
## 5194                                                                                                   Mobile Suit Z-Gundam
## 5195                                                                              Cubix Robots for Everyone: Clash 'n' Bash
## 5196                                                                                             BlazBlue: Calamity Trigger
## 5197                                                                                                   Kirby's Dream Land 3
## 5198                                                                                            Big Bass World Championship
## 5199                                                                                                       NFL GameDay 2001
## 5200                                                                                                                NBA 2K6
## 5201                                                                               Saban's Power Rangers: Lightspeed Rescue
## 5202                                                                                                            Tetrisphere
## 5203                                                                                                          Jurassic Park
## 5204                                                                                         Mystical Ninja starring Goemon
## 5205                                                                                                Marvel Super Hero Squad
## 5206                                                                               The Chronicles of Narnia: Prince Caspian
## 5207                                                                                         World's Scariest Police Chases
## 5208                                                                                         Shaun Palmer's Pro Snowboarder
## 5209                                                                                    North American Hunting Extravaganza
## 5210                                                                                  ZhuZhu Pets: Featuring The Wild Bunch
## 5211                                                                                               MechAssault 2: Lone Wolf
## 5212                                                                                              Valkyrie Profile: Lenneth
## 5213                                                                                                         Hamster Club 3
## 5214                                                                                                      Breath of Fire II
## 5215                                                                                                            LEGO Racers
## 5216                                                                                                        Just Dance 2016
## 5217                                                                                                      ESPN NFL Football
## 5218                                                                                    Naruto: Ultimate Ninja 3 (JP sales)
## 5219                                                                                                     Rapala Pro Fishing
## 5220                                                                                               ATV/Monster Truck Mayhem
## 5221                                                                                J-League Pro Soccer Club o Tsukurou '04
## 5222                                                                                       Spider-Man: Shattered Dimensions
## 5223                                                                               Dai-2-Ji Super Robot Taisen Z Saisei-hen
## 5224                                                                                                                   TMNT
## 5225                                                                                              Fossil Fighters: Frontier
## 5226                                                                                           Disney's The Haunted Mansion
## 5227                                                                                   Arc the Lad: Twilight of the Spirits
## 5228                                                                                          Dance Dance Revolution 3rdMix
## 5229                                                                                                  Ryu Ga Gotoku Kenzan!
## 5230                                                                                                   Super Robot Taisen A
## 5231                                                                                                           Watch Dogs 2
## 5232                                                                                                Tiger Woods PGA Tour 09
## 5233                                                                                                           Boxer's Road
## 5234                                                                                                        Frogs And Flies
## 5235                                                                                Harry Potter and the Chamber of Secrets
## 5236                                                                                              Toriko: Gourmet Survival!
## 5237                                                                                                       South Park Rally
## 5238                                                          Ganbare Goemon 3: Shishi Jyuurokubei no Karakuri Manji Katame
## 5239                                                                                                         Arctic Thunder
## 5240                                                                                                               NHL 2K10
## 5241                                                                                   J-League Pro Soccer Club o Tsukurou!
## 5242                                                                                                ESPN: Sports Connection
## 5243                                                                                                  Digging for Dinosaurs
## 5244                                                                                         Formula 1 Championship Edition
## 5245                                                                                                                  Shrek
## 5246                                                                                                         Dragon's Crown
## 5247                                                                                                           Thief (2014)
## 5248                                                                                                                 Blasto
## 5249                                                                                                           Wipeout 2048
## 5250                                                                                         Wonder Pets! Save the Animals!
## 5251                                                                                                 Backyard Baseball 2006
## 5252                                                                                     Cabela's Outdoor Adventures (2006)
## 5253                                                                                         Trauma Center: Under the Knife
## 5254                                                                                           Press Your Luck 2010 Edition
## 5255                                                                                                      Nicktoons: Unite!
## 5256                                                                                                 Farming Simulator 2015
## 5257                                                                                               Earth Defense Force 2025
## 5258                                                                                         Middle-Earth: Shadow of Mordor
## 5259                                                                                                             Suikoden V
## 5260                                                                                                              Picross 2
## 5261                                                                                                 SOCOM: Tactical Strike
## 5262                                                                                                 Farming Simulator 2015
## 5263                                                                                                Tiger Woods PGA Tour 14
## 5264                                                                     Sentouchu: Densetsu no Shinobi to Survival Battle!
## 5265                                                                                                                 U-Sing
## 5266                                                                                                          Outlaw Golf 2
## 5267                                                                                                  Momotarou Dentetsu 12
## 5268                                                                                                             LocoRoco 2
## 5269                                                                                         Football Manager Handheld 2010
## 5270                                                                                  Disney's Tarzan: Return to the Jungle
## 5271                                                                                                Batman: Rise of Sin Tzu
## 5272                                                                                               Cabela's Dangerous Hunts
## 5273                                                                                                AMF Bowling World Lanes
## 5274                                                                                           Kinectimals: Now with Bears!
## 5275                                                                                                                G-Force
## 5276                                                                                                  Worms: Open Warfare 2
## 5277                                                                                         Jikkyou Powerful Pro Yakyuu 13
## 5278                                                                                                              Dark Void
## 5279                                                                                                Guitar Hero: Smash Hits
## 5280                                                                                                            Mega Man X3
## 5281                                                                                                          Stunt Race FX
## 5282                                                                                                               NHL 2K10
## 5283                                                                                                          Bloody Roar 3
## 5284                                                                                                         WWE Crush Hour
## 5285                                                                                          Persona 2: Eternal Punishment
## 5286                                                                                              Homefront: The Revolution
## 5287                                                                                                   Assassin's Creed III
## 5288                                                                                               One Piece: Burning Blood
## 5289                                                                                        Star Wars: Flight of the Falcon
## 5290                                                                                  One Piece: Gigant Battle 2 Shin Sekai
## 5291                                                                                 Teenage Mutant Ninja Turtles: Smash-Up
## 5292                                                                                            Toukiden: The Age of Demons
## 5293                                                                                                      Metro: Last Light
## 5294                                                                                       Jikkyou Powerful Pro Yakyuu 2000
## 5295                                                                          Dragon Ball Z: Budokai Tenkaichi 2 (JP sales)
## 5296                                                                                                  Football Manager 2016
## 5297                                                                                                Resident Evil: Dead Aim
## 5298                                                                        Command & Conquer: Red Alert 3 Ultimate Edition
## 5299                                                                                                  Need for Speed Carbon
## 5300                                                                 The Adventures of Jimmy Neutron Boy Genius: Jet Fusion
## 5301                                                                                                         FIFA Soccer 13
## 5302                                                                                The Fairly Odd Parents: Shadow Showdown
## 5303                                                                                                          EA Sports MMA
## 5304                                                                               Saban's Power Rangers: Lightspeed Rescue
## 5305                                                                                                       Xbox Music Mixer
## 5306                                                                                                               Defiance
## 5307                                                                                                   Terminator Salvation
## 5308                                                                                  CSI: Deadly Intent - The Hidden Cases
## 5309                                                                                                      College Hoops 2K8
## 5310                                                                                                Destiny: The Taken King
## 5311                                                                                                      Pac-Man All-Stars
## 5312                                                                                                 Guitar Hero: Metallica
## 5313                                                                                                         Guilty Gear X2
## 5314                                                                                                          Chicken Shoot
## 5315                                                                                     Tom Clancy's Rainbow Six: Lockdown
## 5316                                                                      From TV Animation One Piece: Tobidase Kaizokudan!
## 5317                                                                                                              MotoGP 08
## 5318                                                                                                 LEGO Marvel's Avengers
## 5319                                                                                                 The Tale of Despereaux
## 5320                                                                                                      Aggressive Inline
## 5321                                                                                                 Mirror's Edge Catalyst
## 5322                                                                                                         Sniper Elite 3
## 5323                                                                                                      Hello Kitty Daily
## 5324                                                                                                             NFL Street
## 5325                                                                                                     Karaoke Revolution
## 5326                                                                                       Metal Arms: Glitch in the System
## 5327                                                                                                              Tropico 4
## 5328                                                                                          Jikkyou Powerful Pro Yakyuu 7
## 5329                                                                                                          Rally Cross 2
## 5330                                                                                                              EverGrace
## 5331                                                                                            Enemy Territory: Quake Wars
## 5332                                                                                         Lunar 2: Eternal Blue Complete
## 5333                                                                                 Street Fighter Alpha: Warriors' Dreams
## 5334                                                                                                  Rugrats: Royal Ransom
## 5335                                                                                                       MLB 06: The Show
## 5336                                                                                                         Over the Hedge
## 5337                                                                                                     Tomb Raider (2013)
## 5338                                                                                      Charlie and the Chocolate Factory
## 5339                                                                                                       TrackMania Turbo
## 5340                                                                                           Kurushi Final: Mental Blocks
## 5341                                                                                               Risk / Battleship / Clue
## 5342                                                                                   Tiger Woods PGA Tour 12: The Masters
## 5343                                                                                                           Def Jam Icon
## 5344                                                                                           SD Gundam G Generation World
## 5345                                                                                             The Wild Thornberrys Movie
## 5346                                                                              High School Musical 3: Senior Year DANCE!
## 5347                                                                                              Hannah Montana: The Movie
## 5348                                                                                             Dynasty Warriors 5 Empires
## 5349                                                                                                   Call of Duty: Ghosts
## 5350                                                                                         Transformers: Dark of the Moon
## 5351                                                                                                            SoulCalibur
## 5352                                                                                                              WipEout 3
## 5353                                                                                     UEFA Euro 2008 Austria-Switzerland
## 5354                                                                                               SpongeBob's Boating Bash
## 5355                                                                                        Classic NES Series: Ice Climber
## 5356                                                                               Pirates of the Caribbean: At World's End
## 5357                                                                                                                WWE '12
## 5358                                                                                                          WWE All Stars
## 5359                                                                                                            Mini Ninjas
## 5360                                                                                                Tekken Tag Tournament 2
## 5361                                                                                                                Freeway
## 5362                                                                                                       Driver 2 Advance
## 5363                                                                                                      Monster Rancher 4
## 5364                                                                                                            Mini Ninjas
## 5365                                                           Tim Burton's The Nightmare Before Christmas: Oogie's Revenge
## 5366                                                                                                             Iron Storm
## 5367                                                                                                       Battalion Wars 2
## 5368                                                                                                MotorStorm: Arctic Edge
## 5369                                                                                The Fairly Odd Parents: Shadow Showdown
## 5370                                                                                                    Marvel Super Heroes
## 5371                                                                                                      Super Bust-A-Move
## 5372                                                                                                      Hitman: Contracts
## 5373                                                                                                    Supreme Commander 2
## 5374                                                                                       Thunderstrike: Operation Phoenix
## 5375                                                                                                              Frostbite
## 5376                                                                                                         Alien's Return
## 5377                                                                            Mario & Sonic at the Rio 2016 Olympic Games
## 5378                                                                         Avatar: The Last Airbender - The Burning Earth
## 5379                                                                                                         Racquet Sports
## 5380                                                                                                    Company of Heroes 2
## 5381                                                                                          Trauma Center: Second Opinion
## 5382                                                                                                   DanceDanceRevolution
## 5383                                                                                                 WWE Day of Reckoning 2
## 5384                                                                                                               NBA 2K12
## 5385                                                                                             The Urbz: Sims in the City
## 5386                                                                                                       Fantastic Voyage
## 5387                                                   Vancouver 2010 - The Official Video Game of the Olympic Winter Games
## 5388                                                                                  Night Warriors: Darkstalkers' Revenge
## 5389                                                                                                         Rayman Legends
## 5390                                                                              SpongeBob SquarePants: The Yellow Avenger
## 5391                                                                                                               Monopoly
## 5392                                                                                                        SimCity Creator
## 5393                                                                                                     Off Road Challenge
## 5394                                                                                                               Tenchu Z
## 5395                                                                                                             Bank Heist
## 5396                                                                                                                  Conan
## 5397                                                                                                   Backstreet Billiards
## 5398                                                                                                               Carnival
## 5399                                                                                    Leisure Suit Larry: Magna Cum Laude
## 5400                                                                                                   MVP 06 NCAA Baseball
## 5401                                                                                Naruto Shippuden: Ultimate Ninja Impact
## 5402                                                                                   Momotarou Dentetsu DS: Tokyo & Japan
## 5403                                                                                                            Point Blank
## 5404                                                                                                    Disney Infinity 3.0
## 5405                                                                                             Speed Racer: The Videogame
## 5406                                                                                                               F.E.A.R.
## 5407                                                                                                              Tiny Tank
## 5408                                                                                             Yu-Gi-Oh! 5D's Tag Force 5
## 5409                                                                                  Tom Clancy's Ghost Recon: Shadow Wars
## 5410                                                                                                Smart Girl's Party Game
## 5411                                                                                                             Spy Hunter
## 5412                                                                                                James Bond 007: Legends
## 5413                                                                                            The Sims 3: Town Life Stuff
## 5414                                                                                                   Herbie: Fully Loaded
## 5415                                                                                           Teenage Mutant Ninja Turtles
## 5416                                                                                               Kameo: Elements of Power
## 5417                                                                                         Football Manager Handheld 2008
## 5418                                                                                             Dynasty Warriors 6 Empires
## 5419                                                                                                              The Shoot
## 5420                                                                                               Disney Sing It: Pop Hits
## 5421                                                                                                        Dead or Alive 5
## 5422                                                                                                            My Baby Boy
## 5423                                                                                Puzzle Quest: Challenge of the Warlords
## 5424                                                                                             Dynasty Warriors: Gundam 2
## 5425                                                                                           Star Ocean: Second Evolution
## 5426                                                                                                    Imagine: Movie Star
## 5427                                                                                                          Fade to Black
## 5428                                                                                                                MXRider
## 5429                                                                                                   Disney Magic World 2
## 5430                                                                                           Delta Force: Black Hawk Down
## 5431                                                                               Pirates of the Caribbean: At World's End
## 5432                                                                                                  Angry Birds Star Wars
## 5433                                                                   World Championship Poker 2: Featuring Howard Lederer
## 5434                                                                                                    The Eye of Judgment
## 5435                                                                                                      Sengoku Musou 3 Z
## 5436                                                                           Tom Clancy's Ghost Recon Advanced Warfighter
## 5437                                                                                                             Iron Man 2
## 5438                                                                                                   Tokyo Highway Battle
## 5439                                                                                                                 NHL 09
## 5440                                                                                                 World of Final Fantasy
## 5441                                                                                                     Beyond Good & Evil
## 5442                                                                                        Banjo-Kazooie: Grunty's Revenge
## 5443                                                                                                        Bomberman World
## 5444                                                                                                            Bejeweled 3
## 5445                                                                                                                 NHL 17
## 5446                                                                                                     Mega Man ZX Advent
## 5447                                                                      Transformers: Revenge of the Fallen (DS Versions)
## 5448                                                                                                     NCAA Basketball 10
## 5449                                                                              Star Ocean 5: Integrity and Faithlessness
## 5450                                                                                                           Jeanne d'Arc
## 5451                                                                                                      Deathtrap Dungeon
## 5452                                                                                Tales of the World: Radiant Mythology 2
## 5453                                                                         Night at the Museum: Battle of the Smithsonian
## 5454                                                                          Harry Potter and the Deathly Hallows - Part 2
## 5455                                                                                             Avatar: The Last Airbender
## 5456                                                                                                     Ape Escape Academy
## 5457                                                                                                   WWE Wrestlemania XIX
## 5458                                                                                                             The Sims 2
## 5459                                                                                                                   Hulk
## 5460                                                                                      Untold Legends: The Warriors Code
## 5461                                                                                               Klonoa 2: Lunatea's Veil
## 5462                                                                                                 Deus Ex: Invisible War
## 5463                                                                                               Disney's Treasure Planet
## 5464                                                                                                    NASCAR Thunder 2002
## 5465                                                                                              The King of Fighters XIII
## 5466                                                                                              BeatMania Append GottaMix
## 5467                                                                                             Tak 2: The Staff of Dreams
## 5468                                                                                                               Fracture
## 5469                                                                                                            Ninja Blade
## 5470                                                                                                               Bookworm
## 5471                                                                                         LEGO Batman 2: DC Super Heroes
## 5472                                                                                                         Bee Movie Game
## 5473                                                                                              Kelly Slater's Pro Surfer
## 5474                                                                                                Sniper: Ghost Warrior 2
## 5475                                                                                                        Shrek SuperSlam
## 5476                                                                                                Legends of Wrestling II
## 5477                                                                                                        World Stadium 3
## 5478                                                                          LEGO Pirates of the Caribbean: The Video Game
## 5479                                                                                                            Extra Bases
## 5480                                                                                                   Super Power League 2
## 5481                                                                                                     Virtua Tennis 2009
## 5482                                                                                             Street Fighter Alpha 3 MAX
## 5483                                                                                                       MLB 09: The Show
## 5484                                                                                                     Cool Boarders 2001
## 5485                                                                                               Hell's Kitchen: The Game
## 5486                                                                                        Classic NES Series: Castlevania
## 5487                                                                                              Scooby-Doo! First Frights
## 5488                                                                                                    Fight Night Round 3
## 5489                                                                                         GT Advance Championship Racing
## 5490                                                                                                   Way of the Samurai 2
## 5491                                                                                                   Planet Puzzle League
## 5492                                                                                                             BattleTanx
## 5493                                                                                                            Custom Robo
## 5494                                                                                                Naruto: Rise of a Ninja
## 5495                                                                                          Cabela's Dangerous Hunts 2011
## 5496                                                                                      Hatsune Miku: Project Diva Extend
## 5497                                                                                          Pitfall 3D: Beyond the Jungle
## 5498                                                                                             Disgaea 2: Cursed Memories
## 5499                                                                                                          Clock Tower 3
## 5500                                                                                                      Battle Dodge Ball
## 5501                                                                                                         Etrian Odyssey
## 5502                                                                                            Call Of Duty 2: Big Red One
## 5503                                                                                         Dragon Ball Z: Extreme Butoden
## 5504                                                                         Night at the Museum: Battle of the Smithsonian
## 5505                                                                                              Disgaea: Hour of Darkness
## 5506                                                                                                 NeoGeo Battle Coliseum
## 5507                                                                                                      Resonance of Fate
## 5508                                                                          Harry Potter and the Deathly Hallows - Part 2
## 5509                                                                                                  We Sing Deutsche Hits
## 5510                                                                   SpongeBob SquarePants: Creature from the Krusty Krab
## 5511                                                                                                       MLB 08: The Show
## 5512                                                                                                               Parodius
## 5513                                                                                                           The X-Factor
## 5514                                                                                                Spy Kids 3-D: Game Over
## 5515                                                                                    Sakura Wars 3: Paris wa Moeteiru ka
## 5516                                                                                    Capcom Classics Collection Reloaded
## 5517                                                                                                  NCAA GameBreaker 2001
## 5518                                                                                             Power Rangers: Ninja Storm
## 5519                                                                                         Naruto: Gekito Ninja Taisen! 4
## 5520                                                                                             Medal of Honor: Warfighter
## 5521                                                                            Kidou Senshi Gundam F91: Formula Senki 0122
## 5522                                                                                                      MVP Baseball 2005
## 5523                            Zaidan Houjin Nippon Kanji Nouryoku Kentei Kyoukai Kounin: KanKen DS 2 + Jouyou Kanji Jiten
## 5524                                                                                                               SSX Blur
## 5525                                                                                                      DX Game of Life 2
## 5526                                                                                       Danganronpa: Trigger Happy Havoc
## 5527                                                                                                            NBA Live 96
## 5528                                                                                 Harry Potter and the Half-Blood Prince
## 5529                                                                                                       Alien: Isolation
## 5530                                                                          Samurai Warriors 2: Xtreme Legends (JP sales)
## 5531                                                                                                            Teen Titans
## 5532                                                                                                        Def Jam Rapstar
## 5533                                                                                                     MX vs. ATV Untamed
## 5534                                                                                                Frogger II: Threeedeep!
## 5535                                                                                                          Binary Domain
## 5536                                                                                                            NBA Live 06
## 5537                                                                                                               Fireball
## 5538                                                                                              Dr. Mario / Puzzle League
## 5539                                                                                Family Party: 90 Great Games Party Pack
## 5540                                                                                                    DECA Sports Freedom
## 5541                                                                             Shin Nippon Pro Wrestling: Toukon Retsuden
## 5542                                                                                                               NBA 2K10
## 5543                                                                                              Major League Baseball 2K6
## 5544                                                                                                Golden Axe: Beast Rider
## 5545                                                                          Pinball Hall of Fame: The Gottlieb Collection
## 5546                                                                                                          EA Playground
## 5547                                                                                          Buzz! The Ultimate Music Quiz
## 5548                                                                                         Discovery Kids: Puppy Playtime
## 5549                                                                                          The Witcher: Enhanced Edition
## 5550                                                                           Teenage Mutant Ninja Turtles 2: Battle Nexus
## 5551                                                                                                      Nicktoons: Movin'
## 5552                                                                              Mystery Case Files: The Malgrave Incident
## 5553                                                                                                           Chicken Riot
## 5554                                                                              One Piece: Romance Dawn - Bouken no Yoake
## 5555                                                                                                Might & Magic Heroes VI
## 5556                                                                                                             Iron Man 2
## 5557                                                                                               SWAT: Global Strike Team
## 5558                                                                                                     NCAA Basketball 10
## 5559                                                                                                      Championship Bass
## 5560                                                                                     The Adventures of Tintin: The Game
## 5561                                                                                                Battlestations: Pacific
## 5562                                                                                                                Elebits
## 5563                                                                                              Style Lab: Jewelry Design
## 5564                                                                                                        Def Jam Rapstar
## 5565                                                                                         Hatsune Miku: Project Mirai DX
## 5566                                                                                                        Just Dance 2016
## 5567                                                                                                Golden Axe: Beast Rider
## 5568                                                                                                           Dead Space 2
## 5569                                                                                                       NHL Breakaway 98
## 5570                                                                                          Momotarou Dentetsu 20-Shuunen
## 5571                                                                                               Bratz: Girlz Really Rock
## 5572                                                                                                       Minute to Win It
## 5573                                                                                                               Kinetica
## 5574                                                                                         The Black Eyed Peas Experience
## 5575                                                                                                          NBA Street V3
## 5576                                                                                                        Bust-A-Move '99
## 5577                                                                                             Dragon Quest Monsters 1è·¯2
## 5578                                                                                            Marvel: Ultimate Alliance 2
## 5579                                                                                                            Remember Me
## 5580                                                                                                  Silent Hill: Downpour
## 5581                                                                                                              OverBlood
## 5582                                                                                          Dead Rising 2: Off the Record
## 5583                                                                                               ESPN X-Games Pro Boarder
## 5584                                                                                                 Dragon Ball: XenoVerse
## 5585                                                                                                         Eternal Sonata
## 5586                                                                                           Harvest Moon: Back to Nature
## 5587                                                                                                        Dead or Alive 5
## 5588                                                                                      Naruto: Ultimate Ninja (JP sales)
## 5589                                                                                                       Final Fantasy XI
## 5590                                                                                Dragon Ball Heroes: Ultimate Mission 2 
## 5591                                                                                                            Overlord II
## 5592                                                                                                          Madden NFL 09
## 5593                                                                                        Dance Dance Revolution Universe
## 5594                                                                                  Go, Diego, Go!: Great Dinosaur Rescue
## 5595                                                                                                  Batman: Arkham Asylum
## 5596                                                                                        Warhammer 40,000: Squad Command
## 5597                                                                                                              Darkwatch
## 5598                                                                                         Tony Hawk's American Wasteland
## 5599                                                                                                     Beautiful Katamari
## 5600                                                                              Ben 10 Ultimate Alien: Cosmic Destruction
## 5601                                                                                                         Pony Friends 2
## 5602                                                                                                   My Baby: First Steps
## 5603                                                                                    Prince of Persia: The Sands of Time
## 5604                                                                          Harry Potter and the Deathly Hallows - Part 2
## 5605                                                                                                            Sky Odyssey
## 5606                                                                                              Nagano Winter Olympics 98
## 5607                                                                                             Rayman 2: The Great Escape
## 5608                                                                                                        Just Dance 2016
## 5609                                                                                                     Kirby's Block Ball
## 5610                                                                                              World of Warcraft: Legion
## 5611                                                                                       Hatsune Miku: Project Diva F 2nd
## 5612                                                                                                Bleach: Shattered Blade
## 5613                                                                                                          FIFA Street 3
## 5614                                                                                                               Fortress
## 5615                                                                 Disney Fairies: Tinker Bell and the Great Fairy Rescue
## 5616                                                                                          FIFA 2001 Major League Soccer
## 5617                                                                                        Operation Flashpoint: Red River
## 5618                                                                                                  Power Rangers Samurai
## 5619                                                                     Karaoke Revolution Presents American Idol Encore 2
## 5620                                                                                                                 DiRT 2
## 5621                                                                                                            Rally Cross
## 5622                                                                                       Frogger's Adventures: The Rescue
## 5623                                                                                              Silent Hill HD Collection
## 5624                                                                                                        Extreme Pinball
## 5625                                                                                                            Singularity
## 5626                                                                                            Karaoke Revolution Volume 3
## 5627                                                                                                   Vin Diesel: Wheelman
## 5628                                                                                              Army of Two: The 40th Day
## 5629                                                                   Seaman: Kindan no Pet - Gaze Hakushi no Jikken Shima
## 5630                                                                                                 Street Fighter Alpha 2
## 5631                                                                                           Persona 4: Dancing All Night
## 5632                                                                                 Carnival Games: Monkey See, Monkey Do!
## 5633                                                  No.1 Muscle Ranking - Kinniku Banzuke Vol. 1: Oregasaikyouno Otokoda!
## 5634                                                    Cartoon Network Collection: Game Boy Advance Video Platinum Edition
## 5635                                                                              Ultimate Fighting Championship: Throwdown
## 5636                                                                                                              Wipeout 2
## 5637                                                                                     SpongeBob SquarePants: Double Pack
## 5638                                                                                                    Tetris 2 + Bombliss
## 5639                                                                                       Disney's Extreme Skate Adventure
## 5640                                                                                           Rock Band Country Track Pack
## 5641                                                                                                                   Prey
## 5642                                                                                           Ed, Edd n Eddy: Jawbreakers!
## 5643                                                                                                               Dragster
## 5644                                                                                                 Frankenstein's Monster
## 5645                                                                                               Shaun White Snowboarding
## 5646                                                                                              Riven: The Sequel to Myst
## 5647                                                                                                               Folklore
## 5648                                                                                                      Derby Stallion DS
## 5649                                                                                                 Murdered: Soul Suspect
## 5650                                                                                                        The Darkness II
## 5651                                                                                                                NBA 2K3
## 5652                                                                             Dragon Quest Monsters: Battle Road Victory
## 5653                                                                                                Shin Momotarou Densetsu
## 5654                                                                           From TV Animation One Piece: Grand Battle! 3
## 5655                                                                                                        Sega Smash Pack
## 5656                                                                                                 All-Star Baseball 2005
## 5657                                                                                 The Conveni: Ano Machi wo Dokusen Seyo
## 5658                                                                                   Shin Super Robot Taisen Special Disk
## 5659                                                                                                            Live A Live
## 5660                                                                                                         NFL Fever 2004
## 5661                                                                                                        Madden NFL 2002
## 5662                                                                                              Bigfoot: Collision Course
## 5663                                                                                                          FIFA Street 3
## 5664                                                                                          Cabela's Dangerous Hunts 2011
## 5665                                                                                     UEFA Euro 2008 Austria-Switzerland
## 5666                                                                                                   Test Drive Unlimited
## 5667                                                                                 Marvel Nemesis: Rise of the Imperfects
## 5668                                                                                                      The Biggest Loser
## 5669                                                                                                  Power Rangers Samurai
## 5670                                                                                      Kingdom Under Fire: The Crusaders
## 5671                                                                                                          4x4 Evolution
## 5672                                                                                                 Clive Barker's Jericho
## 5673                                                                                                Rise of the Tomb Raider
## 5674                                                                                               Momotarou Dentetsu Happy
## 5675                                                                                              Power Rangers: Time Force
## 5676                                                                                      Romance of the Three Kingdoms VII
## 5677                                                                                                  Goosebumps HorrorLand
## 5678                                                                                                              Fable III
## 5679                                                                                        Littlest Pet Shop: City Friends
## 5680                                                                                                         Monsters, Inc.
## 5681                                                                                                                DJ Hero
## 5682                                                                                                         Lord of Arcana
## 5683                                                                             Phineas and Ferb: Across the 2nd Dimension
## 5684                                                                                                  Quiz Magic Academy DS
## 5685                                                                                                               Tekken 6
## 5686                                                                                                        Chicken Blaster
## 5687                                                                                             Dynasty Warriors 4 Empires
## 5688                                                                                                             Shenmue II
## 5689                                                                                                    Crash of the Titans
## 5690                                                                                                 LEGO Marvel's Avengers
## 5691                                                                                                  Skylanders SWAP Force
## 5692                                                                                                      Heart of Darkness
## 5693                                                                                                   Rugby World Cup 2011
## 5694                                                                                                       Virtua Striker 2
## 5695                                                                                                          F1 Race Stars
## 5696                                                                                                            Overlord II
## 5697                                                                                             WarCraft II: The Dark Saga
## 5698                                                                                                        Shrek the Third
## 5699                                                                                    MonHun Nikki: Poka Poka Ailu Mura G
## 5700                                                                                              BlazBlue: Continuum Shift
## 5701                                                                                                       MLB 07: The Show
## 5702                                                                                                       Crash Nitro Kart
## 5703                                                                                   Etrian Odyssey III: The Drowned City
## 5704                                                                                                 Batman: Arkham Origins
## 5705                                                                                                           NBA ShootOut
## 5706                                                                                 Harry Potter and the Half-Blood Prince
## 5707                                                                                         Jikkyou Powerful Pro Yakyuu 14
## 5708                                                                                                         Fishing Master
## 5709                                                                                                        Madden NFL 2004
## 5710                                                       Ganbare Goemon: KiraKira Douchuu - Boku ga Dancer ni Natta Riyuu
## 5711                                                                                 Jikkyou Powerful Pro Yakyuu Portable 3
## 5712                                                                                                             Mario Golf
## 5713                                                                                             Digimon World: Dawn / Dusk
## 5714                                                                                 Sesame Street: Elmo's Letter Adventure
## 5715                                                                                                    Birthday Party Bash
## 5716                                                                                                  NBA Inside Drive 2003
## 5717                                                                                                            FIFA Street
## 5718                                                                                                            Monster Lab
## 5719                                                                                                             Fate/Extra
## 5720                                                                                                           Drakengard 3
## 5721                                                                                                              Catherine
## 5722                                                                                                    J Stars Victory Vs.
## 5723                                                                                            Jampack: Summer 2003 (RP-M)
## 5724                                                                             Alone in the Dark: One-Eyed Jack's Revenge
## 5725                                                                                          Yu-Gi-Oh! The Dawn of Destiny
## 5726                                                                                                       1001 Touch Games
## 5727                                                                                                The Matrix: Path of Neo
## 5728                                                                                           Namco Museum: Virtual Arcade
## 5729                                                                                                   Bust-A-Move Universe
## 5730                                                                                           Mortal Kombat: Shaolin Monks
## 5731                                                                                                 Batman: Arkham Origins
## 5732                                                          Taiko Drum Master: Don and Katsu's Space-Time Great Adventure
## 5733                                                                                   Shin Megami Tensei: Devil Survivor 2
## 5734                                                                                                             Einh盲nder
## 5735                                                                              Tiny Toon Adventures: The Great Beanstalk
## 5736                                                                                              Sonic Boom: Rise of Lyric
## 5737                                                                                                      Metro: Last Light
## 5738                                                                                     The Settlers 7: Paths to a Kingdom
## 5739                                                                                                          WipEout Pulse
## 5740                                                                                The Legend of Spyro: Dawn of the Dragon
## 5741                                                                                        Foto Frenzy: Spot The Diffrence
## 5742                                                                                              Armored Core: Silent Line
## 5743                                                                                            SD Gundam G Generation Wars
## 5744                                                                              Dr. Seuss: How the Grinch Stole Christmas
## 5745                                                                                                                   Fuel
## 5746                                                                                                 Panzer Dragoon II Zwei
## 5747                                                                                                              Tropico 5
## 5748                                                                                                           KISS Pinball
## 5749                                                                                      Brothers In Arms: Earned in Blood
## 5750                                                                                 LEGO Legends of Chima: Laval's Journey
## 5751                                                              2 Games in 1: Disney's Brother Bear / The Lion King 1 1/2
## 5752                                                                                        Super Robot Taisen Complete Box
## 5753                                                                                              Peppa Pig: Theme Park Fun
## 5754                                                                                              Skylanders: SuperChargers
## 5755                                                                                                           7 Wonders II
## 5756                                                                                                          My Horse & Me
## 5757                                                                                                              Dark Void
## 5758                                                                              Gold's Gym: Cardio Workout (Others sales)
## 5759                                                                                               Goemon's Great Adventure
## 5760                                                                                                Hot Wheels Turbo Racing
## 5761                                                                                                            Vigilante 8
## 5762                                                                                                         Bass Hunter 64
## 5763                                                                                                       Doubutsu no Mori
## 5764                                                                                          Jikkyou Powerful Pro Yakyuu 4
## 5765                                                                                                             Happy Feet
## 5766                                                                                                              Manhunt 2
## 5767                                                                                             Mega Man Maverick Hunter X
## 5768                                                                        J-League Winning Eleven 2007: Club Championship
## 5769                                                                                          Barbie as The Island Princess
## 5770                                                                                 Star Wars Jedi Knight II: Jedi Outcast
## 5771                                                                                                    Clash of the Titans
## 5772                                                                                              Mega Man Battle Network 2
## 5773                                                                                              Major League Baseball 2K8
## 5774                                                                                                        Pandora's Tower
## 5775                                                                                                          Mountain King
## 5776                                                                                                      Jampack Volume 12
## 5777                                                                             Lord of the Rings: Battle for Middle-Earth
## 5778                                                                                               Shaun White Snowboarding
## 5779                                                                                                             SimAnimals
## 5780                                                                                                Tiger Woods PGA Tour 06
## 5781                                                                      Shin Megami Tensei: Devil Summoner - Soul Hackers
## 5782                                                                                                       MySims SkyHeroes
## 5783                                                                                             Jonah Lomu Rugby Challenge
## 5784                                                                                                       Demolition Racer
## 5785                                                                                              Midway Arcade Treasures 2
## 5786                                                                                                       Final Fantasy IV
## 5787                                                                                                    The Incredible Hulk
## 5788                                                                                                    NASCAR Thunder 2003
## 5789                                                                                      SD Gundam G Generation: Overworld
## 5790                                                                      Shin Megami Tensei: Devil Summoner - Soul Hackers
## 5791                                                                                               Mega Man Zero Collection
## 5792                                                                                                     SingStar Take That
## 5793                                                                                                       NHL FaceOff 2000
## 5794                                                                                              Pro Evolution Soccer 2013
## 5795                                                                                                Star Wars Racer Revenge
## 5796                                                              Yu-Gi-Oh! 5D's World Championship 2010 Reverse of Arcadia
## 5797                                                                                                   NCAA Final Four 2002
## 5798                                                                                           South Park: Chef's Luv Shack
## 5799                                                                                     Cabela's Outdoor Adventures (2009)
## 5800                                                                                                            Music Maker
## 5801                                                                                                           Slot Machine
## 5802                                                                          Ganbare Goemon 2: Kiteretsu Shougun Magginesu
## 5803                                                                                     Shrek's Carnival Craze Party Games
## 5804                                                                                                             Astroblast
## 5805                                                                                                               40 Winks
## 5806                                                                                                               Blade II
## 5807                                                                                       Calvin Tucker's Redneck Jamboree
## 5808                                                              My Virtual Tutor: Reading Adventure Pre-K to Kindergarten
## 5809                                                                                                        TRON: Evolution
## 5810                                                                   A Collection of Classic Games from the Intellivision
## 5811                                                                                                              Math Play
## 5812                                                                                         Bruce Lee: Quest of the Dragon
## 5813                                                                                                               Spin Jam
## 5814                                                                                                       KuruKuru Kururin
## 5815                                                                                      Disney's The Emperor's New Groove
## 5816                                                                                             Dragon Ball Z: Battle of Z
## 5817                                                                                                     DmC: Devil May Cry
## 5818                                                                                        Disney's Stitch: Experiment 626
## 5819                                                                                                          RPG Tsukuru 2
## 5820                                                                                      Yuu Yuu Hakusho 2: Kakutou no Sho
## 5821                                                                                               Orphen: Scion of Sorcery
## 5822                                                                                                            NBA Live 08
## 5823                                                                             Star Wars Episode III: Revenge of the Sith
## 5824                                                                                                    Ultimate Spider-Man
## 5825                                                                                                      Midtown Madness 3
## 5826                                                                                              Shrek Swamp Kart Speedway
## 5827                                                                                                        Gameboy Gallery
## 5828                                                                                                               Contra 4
## 5829                                                                                                           Virtua Cop 2
## 5830                                                                                                                Ehrgeiz
## 5831 Touhoku Daigaku Mirai Kagaku Gijutsu Kyoudou Kenkyuu Center Kawashima Ryuuta Kyouju Kanshu: Nou Ryoku Trainer Portable
## 5832                                                                                           Spyro: Attack of the Rhynocs
## 5833                                                                                                    Monsters vs. Aliens
## 5834                                                                                     Army Men World War: Land, Sea, Air
## 5835                                                                                                  NASCAR 2011: The Game
## 5836                                                                                             BlazBlue: Chrono Phantasma
## 5837                                                                                         Dai-2-Ji Super Robot Taisen OG
## 5838                                                                                       Naruto: Ninja Destiny (US sales)
## 5839                                                                                          Kingdoms of Amalur: Reckoning
## 5840                                                                                                         Jumping Flash!
## 5841                                                                                                 Mario Party: Star Rush
## 5842                                                                                               Karaoke Revolution Party
## 5843                                                                                                                Burnout
## 5844                                                                                     Lizzie McGuire 3: Homecoming Havoc
## 5845                                                                                                           Chaos Legion
## 5846                                                                                                            Puyo Puyo 7
## 5847                                                                                      Charlie and the Chocolate Factory
## 5848                                                                                            Neopets: The Darkest Faerie
## 5849                                                                                                         Blazing Heroes
## 5850                                                                               Naruto Shippuden: Ultimate Ninja Storm 4
## 5851                                                                                                         Rhythm Tengoku
## 5852                                                                                                   Super Robot Taisen W
## 5853                                                                                                      Cart World Series
## 5854                                                                                                   Shrek: Forever After
## 5855                                                                                                      Batman: Arkham VR
## 5856                                                                                                             Lumines ll
## 5857                                                                                                           24: The Game
## 5858                                                                            The Dukes of Hazzard II: Daisy Dukes It Out
## 5859                                                                                                            Famista '91
## 5860                                                                                                             Madagascar
## 5861                                                                                              The King of Fighters XIII
## 5862                                                                                                         Sniper Elite 3
## 5863                                                                     Super Robot Taisen OG: Original Generations Gaiden
## 5864                                                                                           Lego Batman 3: Beyond Gotham
## 5865                                                                                                             Decathlete
## 5866                                                                                          Tom Clancy's Splinter Cell 3D
## 5867                                                                                                          Magna Carta 2
## 5868                                                                                               Looney Tunes: Duck Amuck
## 5869                                                                            Shin Megami Tensei: Persona 2: Innocent Sin
## 5870                                                                                     Romance of the Three Kingdoms VIII
## 5871                                                                                             Fossil Fighters (JP sales)
## 5872                                                                                                  Daikaijyuu Monogatari
## 5873                                                                                                     Hard Hitter Tennis
## 5874                                                                                                                F1 2013
## 5875                                                                                    Harvest Moon: The Tale of Two Towns
## 5876                                                                                                               Quake II
## 5877                                                                                               Monster Truck Madness 64
## 5878                                                                                               Crazy Taxi: Catch a Ride
## 5879                                                                                             Nounai Aeshe: IQ Suppli DS
## 5880                                                                                 Final Fantasy XI: Wings of the Goddess
## 5881                                                                                                         PowerUp Heroes
## 5882                                                                                                                  Jonas
## 5883                                                                                           Macross Digital Mission VF-X
## 5884                                                                                                   Rayman 2: Revolution
## 5885                                                                            Yu Yu Hakusho Ghost Files: Spirit Detective
## 5886                                                                                                      Super Bomberman 5
## 5887                                                                                          One Piece Unlimited Cruise SP
## 5888                                                                                                          Madden NFL 13
## 5889                                                                                                 Army Men: Air Attack 2
## 5890                                                                                                          NBA Live 2003
## 5891                                                                                                           Stranglehold
## 5892                                                                                       Pride FC: Fighting Championships
## 5893                                                                                                           Eternal Ring
## 5894                                                                                                           Dragon Force
## 5895                                                                                     Dynasty Warriors 8: Xtreme Legends
## 5896                                                                                  Resident Evil Archives: Resident Evil
## 5897                                                                                                     Dynasty Warriors 6
## 5898                                                                                        Silent Hill: Shattered Memories
## 5899                                                                                 Dragon Quest Builders: Revive Alefgard
## 5900                                                                                                         Winning Post 2
## 5901                                                                                Star Gladiator Episode: I Final Crusade
## 5902                                                                                      Dance Dance Revolution Universe 3
## 5903                                                                                         Showdown: Legends of Wrestling
## 5904                                                                                      Sword Art Online: Hollow Fragment
## 5905                                                                                                 Imagine: Family Doctor
## 5906                                                                                                  Far East of Eden Zero
## 5907                                                                                                  Full Spectrum Warrior
## 5908                                                                        Taiko no Tatsujin Wii: Minna de Party * 3-Yome!
## 5909                                                                                                       The Sims 2: Pets
## 5910                                                                                              Wacky Races: Crash & Dash
## 5911                                                                                                 Power Pro Kun Pocket 6
## 5912                                                                                                Power Pro Kun Pocket 10
## 5913                                                                                Finding Nemo: The Continuing Adventures
## 5914                                                                                       Spirit: Stallion of the Cimarron
## 5915                                                                         The Suite Life of Zack & Cody: Circle of Spies
## 5916                                                                                                    Future Cop L.A.P.D.
## 5917                                                                                                           MySims Party
## 5918                                                                                                          Hamster Tarou
## 5919                                                                                   Fist of the North Star: Ken's Rage 2
## 5920                                                                                                             Shark Tale
## 5921                                                                                                    MLB SlugFest Loaded
## 5922                                                                                                              Squinkies
## 5923                                                                                           Rapala Pro Bass Fishing 2010
## 5924                                                                                           Teenage Mutant Ninja Turtles
## 5925                                                                                     Capcom Classics Collection Remixed
## 5926                                                                                                              1701 A.D.
## 5927                                                                                      Lego Star Wars: The Force Awakens
## 5928                                                                                                        Little Deviants
## 5929                                                                                                           Spider-Man 3
## 5930                                                                                                       AMF Bowling 2004
## 5931                                                                                                 N3: Ninety-Nine Nights
## 5932                                                                                       Scooby-Doo! Night of 100 Frights
## 5933                                                                                                        Shrek the Third
## 5934                                                                                                       Radiant Historia
## 5935                                                                                                                Sorcery
## 5936                                                                                                      RealSports Boxing
## 5937                                                                                                 Imagine: Makeup Artist
## 5938                                                                              Harry Potter and the Order of the Phoenix
## 5939                                                                                                             Grandia II
## 5940                                                                                  Shaun White Snowboarding: World Stage
## 5941                                                                                              Spider-Man: Friend or Foe
## 5942                                                                                                 Guitar Hero: Van Halen
## 5943                                                                                            Dreamworks Madagascar Kartz
## 5944                                                                           Batman: The Brave and the Bold the Videogame
## 5945                                                                                                             The Sims 2
## 5946                                                                                            Phineas and Ferb Ride Again
## 5947                                                                                             Need for Speed Underground
## 5948                                                                                                        Def Jam Rapstar
## 5949                                                                                                 Power Pro Kun Pocket 4
## 5950                                                                                                        Guardian Heroes
## 5951                                                                                                            Outlaw Golf
## 5952                                                                                       Fisherman's Bait 2: Big Ol' Bass
## 5953                                                                                                       MySims SkyHeroes
## 5954                                                                                                            Mini Ninjas
## 5955                                                                           Lupin the 3rd: Treasure of the Sorcerer King
## 5956                                                                                                        Disney Infinity
## 5957                                                                                               The LEGO Movie Videogame
## 5958                                                                                       Kurohyou: Ryu ga Gotoku Shinshou
## 5959                                                                                     Ben 10 Alien Force: Vilgax Attacks
## 5960                                                                                                          NBA Street V3
## 5961                                                                                   Nicktoons: Battle for Volcano Island
## 5962                                                                                             WinBack: Covert Operations
## 5963                                                                                                   Kagero: Deception II
## 5964                                                                                             Syphon Filter: Dark Mirror
## 5965                                                                            Jikkyou Powerful Pro Yakyuu 2000 Kaimakuban
## 5966                                                                                                Invizimals: Shadow Zone
## 5967                                                                                                      Glory of Heracles
## 5968                                                                                               Rabbids: Alive & Kicking
## 5969                                                                                                                     Up
## 5970                                                                                            Modnation Racers: Road Trip
## 5971                                                                                                            NBA Live 06
## 5972                                                                                                               ExerBeat
## 5973                                                                                              J-League Victory Goal '96
## 5974                                                                                            Need for Speed: Most Wanted
## 5975                                                                                                  Jeopardy! 2nd Edition
## 5976                                                                                                    SD Gundam G Century
## 5977                                                                                          Ratchet & Clank: Size Matters
## 5978                                                                                                  Front Mission Evolved
## 5979                                                                                           Ultimate Marvel vs. Capcom 3
## 5980                                                                                                    Little King's Story
## 5981                                                                              Atelier Iris 3: Grand Phantasm (US Sales)
## 5982                                                                             Itadaki Street 2: Neon Sign wa Bara Iro ni
## 5983                                                                                          Dynasty Warriors: Strikeforce
## 5984                                                                          From TV Animation One Piece: Treasure Battle!
## 5985                                                                                Alvin and the Chipmunks: The Squeakquel
## 5986                                                                                                                Dolphin
## 5987                                                                                                                   NieR
## 5988                                                                                                        Zoo Tycoon 2 DS
## 5989                                                                                                                Area 51
## 5990                                                                                                               Deadpool
## 5991                                                                                                         UEFA Euro 2016
## 5992                                                                                     Hamster Club 4: Shigessa Daidassou
## 5993                                                                                   Imagine: Fashion Designer World Tour
## 5994                                                                                                Wanted: Weapons of Fate
## 5995                                                                                                            Mega Man X8
## 5996                                                                      The Chronicles of Riddick: Assault on Dark Athena
## 5997                                                                                         Ford Mustang: The Legend Lives
## 5998                                                                                                              Fast Food
## 5999                                                                                                   TouchMaster: Connect
## 6000                                                                                                       FlatOut: Head On
## 6001                                                                                          Jikkyou Powerful Pro Yakyuu 8
## 6002                                                                                         Jeremy McGrath Supercross 2000
## 6003                                                                                                        Supercross 2000
## 6004                                                                                                               War Gods
## 6005                                                                                                                    Viz
## 6006                                                                                                     Top Gear Overdrive
## 6007                                                                                             Ken Griffey Jr.'s Slugfest
## 6008                                                                                                         The New Tetris
## 6009                                                                          Xena: Warrior Princess - The Talisman of Fate
## 6010                                                                                            The Godfather: Dons Edition
## 6011                                                                                           Duel Masters: Sempai Legends
## 6012                                                                                                Marvel Super Hero Squad
## 6013                                                                                   John Deere: Harvest in the Heartland
## 6014                                                                                           Harvest Moon: Magical Melody
## 6015                                                                                           Resident Evil: Revelations 2
## 6016                                                                                                  Heroes of the Pacific
## 6017                                                                                         Prince of Persia: Rival Swords
## 6018                                                                                   The Lord of the Rings: The Third Age
## 6019                                                                                                           Trace Memory
## 6020                                                                                   X-Men Legends II: Rise of Apocalypse
## 6021                                                                                   Nicktoons: Battle for Volcano Island
## 6022                                                                                                       Just Dance Wii 2
## 6023                                                                    Senran Kagura Shinovi Versus: Sh?jo-tachi no Sh?mei
## 6024                                                                                            Borderlands: The Pre-Sequel
## 6025                                                                                                          Madden NFL 08
## 6026                                                                                                        DX Game of Life
## 6027                                                                                               Trauma Center: New Blood
## 6028                                                                                                               Starhawk
## 6029                                                                                               Pirates of the Caribbean
## 6030                                                                                                         FIFA Soccer 13
## 6031                                                                                              Ace Combat: Joint Assault
## 6032                                                                                                           The Punisher
## 6033                                                                                                       MLB Pennant Race
## 6034                                                                                                             The BIGS 2
## 6035                                                                                                   Shrek: Forever After
## 6036                                                                                         Turning Point: Fall of Liberty
## 6037                                                               SD Gundam Gaiden: Knight Gundam Monogatari: Ooinaru Isan
## 6038                                                                                      Karaoke Revolution Glee: Volume 3
## 6039                                                                                          Sonic Boom: Shattered Crystal
## 6040                                                                                                      Shrek Super Party
## 6041                                                                                                         MLB Power Pros
## 6042                                                                                            Mah Jong Quest: Expeditions
## 6043                                                                                          Sakura Wars 4: Koi Seyo,Otome
## 6044                                                                                          Sakura Wars: So Long, My Love
## 6045                                                                                                        Dynasty Tactics
## 6046                                                                                             Call of Juarez: The Cartel
## 6047                                                                                                           Snowboarding
## 6048                                                                              Sesame Street: Cookie's Counting Carnival
## 6049                                                                                                  Angry Birds Star Wars
## 6050                                                                                      Metal Gear Solid V: Ground Zeroes
## 6051                                                                                                              SimCity 4
## 6052                                                                                                James Bond 007: Legends
## 6053                                                                                Puzzle Quest: Challenge of the Warlords
## 6054                                                                                   Dragon Ball Heroes: Ultimate Mission
## 6055                                                                      One Piece Unlimited Cruise 2: Awakening of a Hero
## 6056                                                                                                              Surf's Up
## 6057                                                                                                    Looney Tunes Racing
## 6058                                                                                       Disgaea 5: Alliance of Vengeance
## 6059                                                                        Final Fantasy X-2: International + Last Mission
## 6060                                                                                                     Namco Museum Vol.2
## 6061                                                                                         Sengoku Basara: Samurai Heroes
## 6062                                                                                                Rayman 3: Hoodlum Havoc
## 6063                                                      Penguin no Mondai: Saikyou Penguin Densetsu! A Penguin's Troubles
## 6064                                                                                                      Warriors Orochi 2
## 6065                                                                                                   Feel the Magic XY/XX
## 6066                                                                                       Psi-Ops: The Mindgate Conspiracy
## 6067                                                                                        Tomba! 2: The Evil Swine Return
## 6068                                                                     Dragon Quest: Shounen Yangus to Fushigi no Dungeon
## 6069                                                                                               Neopets Puzzle Adventure
## 6070                                                                              BeatMania Append 4thMix: The beat goes on
## 6071                                                                   Romance of the Three Kingdoms III: Dragon of Destiny
## 6072                                                                                                Power Pro Kun Pocket 11
## 6073                                                                                   Sonic & All-Stars Racing Transformed
## 6074                                                                                        Dead Rising: Chop Till You Drop
## 6075                                                                                                              Purr Pals
## 6076                                                                                                   Spyro: A Hero's Tail
## 6077                                                                                                              NASCAR 08
## 6078                                                                                        Battle & Get! Pokemon Typing DS
## 6079                                                                                                         World of Tanks
## 6080                                                                                                             Links 2004
## 6081                                                                                                            PGA Tour 97
## 6082                                                                                         Majin and the Forsaken Kingdom
## 6083                                                                                        Assassin's Creed IV: Black Flag
## 6084                                                                                                          Earthworm Jim
## 6085                                                                                                     Tales of Phantasia
## 6086                                                                                                     Bratz: Super Babyz
## 6087                                                              Dragon Quest Heroes II: Twin Kings and the Prophecy's End
## 6088                                                                                          Monster 4x4: Masters of Metal
## 6089                                                                                                       SingStar Country
## 6090                                                                                                             VMX Racing
## 6091                                                                                     Hot Shots Golf: World Invitational
## 6092                                                                                        Harvest Moon DS Cute (US sales)
## 6093                                                                                       Disney's Extreme Skate Adventure
## 6094                                                                                         Dragon Ball GT: Transformation
## 6095                                                                                              Super Fire ProWrestling X
## 6096                                                                                                  Battlefield: Hardline
## 6097                                                                                         International Superstar Soccer
## 6098                                                                                                    Tigger's Honey Hunt
## 6099                                                                                                                FIFA 15
## 6100                                                                                                           The Warriors
## 6101                                                                                                          Shadow Hearts
## 6102                                                                                     Dragon Ball Z: Budokai Tenkaichi 2
## 6103                                                                                                Haven: Call of the King
## 6104                                                                                                           Street Hoops
## 6105                                                                                                  Yu-Gi-Oh! Double Pack
## 6106                                                                                             X-Men: Reign of Apocalypse
## 6107                                                                                                    R: Racing Evolution
## 6108                                                                                             Netsu Chu! Pro Yakyuu 2003
## 6109                                                                       Jewel Quest Mysteries: Curse of the Emerald Tear
## 6110                                                                                                     The Golden Compass
## 6111                                                                                                ATV Quad Power Racing 2
## 6112                                                                                         Digimon Adventure: Anode Tamer
## 6113                                                                                           Hatsune Miku: Project Diva f
## 6114                                                                                                  Fantastic 4: Flame On
## 6115                                                                                                 Divinity: Original Sin
## 6116                                                                                 Marvel Nemesis: Rise of the Imperfects
## 6117                                                                                               The King of Fighters '95
## 6118                                                                                                   F/A-18F Super Hornet
## 6119                                                                                               Final Fantasy VI Advance
## 6120                                                                                             LEGO The Lord of the Rings
## 6121                                                                                                                Polaris
## 6122                                                                                                   All Star Cheer Squad
## 6123                                                                                                          Viewtiful Joe
## 6124                                                                                                       Triple Play 2000
## 6125                                                                                                            DeathSmiles
## 6126                                                                                                              Baby Pals
## 6127                                                                                                     Fable: The Journey
## 6128                                                                                                            Bratz Ponyz
## 6129                                                                                                Arcade Hits: Frisky Tom
## 6130                                                                                                 Junior Brain Trainer 2
## 6131                                                                                     Bladestorm: The Hundred Years' War
## 6132                                                                                                                    SAW
## 6133                                                                                                           Chromehounds
## 6134                                                                                  Harry Potter and the Sorcerer's Stone
## 6135                                                                            Unreal Championship 2: The Liandri Conflict
## 6136                                                                                                          Kung Fu Chaos
## 6137                                                                                           Mega Man: Dr. Wily's Revenge
## 6138                                                                                           Reel Fishing: Angler's Dream
## 6139                                                                                                        Shrek the Third
## 6140                                                                                                  Godzilla: Domination!
## 6141                                                                                                            Famista '92
## 6142                                                                                Tales of the World: Radiant Mythology 3
## 6143                                                                              Jissen Pachi-Slot Hisshouhou! Moujuu-Oh S
## 6144                                                                                                       Jackass the Game
## 6145                                                                                                            Mega Man II
## 6146                                                                             Pirates of the Caribbean: Dead Man's Chest
## 6147                                                                                                       Lord of Darkness
## 6148                                                                                   Hannah Montana: Spotlight World Tour
## 6149                                                                                            Rocket Power: Beach Bandits
## 6150                                                                                               Carol Vorderman's Sudoku
## 6151                                                                                        Operation Flashpoint: Red River
## 6152                                                                                         Transformers: Dark of the Moon
## 6153                                                                                 MX SuperFly featuring Ricky Carmichael
## 6154                                                                                                              Surf's Up
## 6155                                                                                         Assassin's Creed II: Discovery
## 6156                                                                                             Syphon Filter: Dark Mirror
## 6157                                                                            Conflict: Desert Storm II - Back to Bagdhad
## 6158                                                                                  Mission: Impossible - Operation Surma
## 6159                                                                               Sesame Street: Elmo's A-to-Zoo Adventure
## 6160                                                                                                       MLB 07: The Show
## 6161                                                                                                               Kung Zhu
## 6162                                                                                           Pitfall: The Mayan Adventure
## 6163                                                                                                 Driver: Parallel Lines
## 6164                                                                                                 Monster Hunter Stories
## 6165                                                                              Ben 10 Ultimate Alien: Cosmic Destruction
## 6166                                                                           The Urbz: Sims In the City (US weekly sales)
## 6167                                                                                                            Mega Man ZX
## 6168                                                                      Backyard Wrestling 2: There Goes the Neighborhood
## 6169                                                                                               Disney's Treasure Planet
## 6170                                                                                                 Guitar Hero: Van Halen
## 6171                                                                                                          Dead or Alive
## 6172                                                                                            Dead to Rights: Retribution
## 6173                                                                                                            Wild ARMs 5
## 6174                                                                                                               Payday 2
## 6175                                                                                                        NFL Blitz 20-02
## 6176                                                                                                             Mega Man 7
## 6177                                                                                  El Shaddai: Ascension of the Metatron
## 6178                                                                                                       Tony Hawk: Shred
## 6179                                                                                         Disney Channel: All Star Party
## 6180                                                                                                Shrek: Ogres & Dronkeys
## 6181                                                                                                NCAA March Madness 2005
## 6182                                                         The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 6183                                                                                                        NBA In The Zone
## 6184                                                                                                       Alien: Isolation
## 6185                                                                           Batman: The Brave and the Bold the Videogame
## 6186                                                                                                               Corvette
## 6187                                                                                            Kenka Bancho: Badass Rumble
## 6188                                                                                   Moshi Monsters: Moshlings Theme Park
## 6189                                                                                          Cabela's Big Game Hunter 2012
## 6190                                                                                              F1 ROC: Race of Champions
## 6191                                                     The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 6192                                                                                         Silent Hill 2: Restless Dreams
## 6193                                                                                                         Sniper Elite 3
## 6194                                                                                                              NES Remix
## 6195                                                                                                  Skylanders: Trap Team
## 6196                                                                                          Soul Nomad & the World Eaters
## 6197                                                                                                            Bass Strike
## 6198                                                                                                         NHL Hitz 20-03
## 6199                                                                                                        Bionic Commando
## 6200                                                                                                       Monopoly Streets
## 6201                                                                                                          Pac-Man Fever
## 6202                                                                                                        Trivial Pursuit
## 6203                                                                                       Medieval Moves: Deadmund's Quest
## 6204                                                                                      Yu-Gi-Oh! World Championship 2008
## 6205                                                                                                           Thief (2014)
## 6206                                                                                                              Real Pool
## 6207                                                                                                        Mister Mosquito
## 6208                                                                                                    Tom and Jerry Tales
## 6209                                                                                                              Kakyuusei
## 6210                                                                                                 Attack on Titan (KOEI)
## 6211                                                                                                   Rugby World Cup 2011
## 6212                                                                                                     CSI: Deadly Intent
## 6213                                                                                                        Civilization II
## 6214                                                                                               Dynasty Warriors: Gundam
## 6215                                                                                                             Madagascar
## 6216                                                                                                The Smurfs: Dance Party
## 6217                                                                                                Virtua Fighter 5 Online
## 6218                                                                                   Indiana Jones and the Staff of Kings
## 6219                                                                                                  Angry Birds Star Wars
## 6220                                                                                                         F-1 Grand Prix
## 6221                                                                                                           SimCity 2000
## 6222                                                                                                            Deer Hunter
## 6223                                                                                            Puyo Puyo! 15th Anniversary
## 6224                                                                                           Pokemon Box: Ruby & Sapphire
## 6225                                                                               Yu-Gi-Oh! Monster Capsule Breed & Battle
## 6226                                                                                             Dave Mirra Freestyle BMX 2
## 6227                                                                                         One Piece: Unlimited World Red
## 6228                                                                                                              Wappy Dog
## 6229                                                                                                 Warpath: Jurassic Park
## 6230                                                                                         Tak and the Guardians of Gross
## 6231                                                                                              True Crime: New York City
## 6232                                                                                           Summer Heat Beach Volleyball
## 6233                                                                                                     NCAA Basketball 09
## 6234                                                                                             Avatar: The Last Airbender
## 6235                                                                                                 Power Pro Kun Pocket 3
## 6236                                                                                            Castlevania: Aria of Sorrow
## 6237                                                                                                        Myst III: Exile
## 6238                                                                                    Shin Megami Tensei: Strange Journey
## 6239                                                                      Mobile Suit Gundam Side Story I: Senritsu no Blue
## 6240                                                                                        Armored Core: Project Phantasma
## 6241                                                                                        Army of Two: The Devil's Cartel
## 6242                                                                                Donkey Kong GB: Dinky Kong & Dixie Kong
## 6243                                                                                      Kobitodzukan: Kobito Kansatsu Set
## 6244                                                                                             Nichibutsu Arcade Classics
## 6245                                                                                                         FIFA Soccer 07
## 6246                                                                                                              Patapon 3
## 6247                                                                                         Ice Age: Dawn of the Dinosaurs
## 6248                                                                                                         Ace Attorney 6
## 6249                                                                                                  Cabela's Trophy Bucks
##      Platform Year_of_Release        Genre
## 1         Wii            2006       Sports
## 2         NES            1985     Platform
## 3         Wii            2008       Racing
## 4         Wii            2009       Sports
## 5          GB            1996 Role-Playing
## 6          GB            1989       Puzzle
## 7          DS            2006     Platform
## 8         Wii            2006         Misc
## 9         Wii            2009     Platform
## 10        NES            1984      Shooter
## 11         DS            2005   Simulation
## 12         DS            2005       Racing
## 13         GB            1999 Role-Playing
## 14        Wii            2007       Sports
## 15       X360            2010         Misc
## 16        Wii            2009       Sports
## 17        PS3            2013       Action
## 18        PS2            2004       Action
## 19       SNES            1990     Platform
## 20         DS            2005         Misc
## 21         DS            2006 Role-Playing
## 22         GB            1989     Platform
## 23        NES            1988     Platform
## 24       X360            2013       Action
## 25        PS2            2002       Action
## 26        GBA            2002 Role-Playing
## 27         DS            2005       Puzzle
## 28         DS            2010 Role-Playing
## 29        PS2            2001       Racing
## 30       X360            2011      Shooter
## 31         GB            1998 Role-Playing
## 32        PS4            2015      Shooter
## 33       X360            2010      Shooter
## 34        3DS            2013 Role-Playing
## 35        PS3            2012      Shooter
## 36       X360            2012      Shooter
## 37       X360            2009      Shooter
## 38        PS3            2011      Shooter
## 39        PS2            2001       Action
## 40        Wii            2008     Fighting
## 41        3DS            2011       Racing
## 42        PS3            2010      Shooter
## 43        PS4            2014       Action
## 44         DS            2005   Simulation
## 45       X360            2007      Shooter
## 46        N64            1996     Platform
## 47         DS            2009       Action
## 48        3DS            2014 Role-Playing
## 49        PS2            2004       Racing
## 50        Wii            2007     Platform
## 51         GB            1992    Adventure
## 52       X360            2008       Action
## 53         PS            1997       Racing
## 54        3DS            2011     Platform
## 55        PS3            2010       Racing
## 56        PS3            2009      Shooter
## 57       SNES            1993     Platform
## 58        PS3            2008       Action
## 59        GBA            2004 Role-Playing
## 60         DS            2004     Platform
## 61       X360            2013      Shooter
## 62        Wii            2011         Misc
## 63        3DS            2012     Platform
## 64        N64            1996       Racing
## 65       X360            2010      Shooter
## 66         PS            1997 Role-Playing
## 67       X360            2012      Shooter
## 68         PS            1999       Racing
## 69        Wii            2010         Misc
## 70        PS3            2013      Shooter
## 71       X360            2007      Shooter
## 72       SNES            1994     Platform
## 73       X360            2013         Misc
## 74        3DS            2012   Simulation
## 75         DS            2007         Misc
## 76       X360            2011 Role-Playing
## 77       SNES            1992       Racing
## 78        PS4            2015       Sports
## 79         XB            2004      Shooter
## 80        Wii            2010         Misc
## 81        Wii            2007         Misc
## 82        PS3            2012       Action
## 83        N64            1997      Shooter
## 84         DS            2012 Role-Playing
## 85        PS2            2001 Role-Playing
## 86         PC            2009   Simulation
## 87        Wii            2007       Sports
## 88        PS4            2015      Shooter
## 89         PS            1999 Role-Playing
## 90       2600            1982       Puzzle
## 91         DS            2008 Role-Playing
## 92        PSP            2005       Action
## 93        PS4            2014      Shooter
## 94        N64            1998       Action
## 95        PS4            2016       Sports
## 96         PS            1997     Platform
## 97        3DS            2014     Fighting
## 98        Wii            2010     Platform
## 99        NES            1988     Platform
## 100      XOne            2015      Shooter
## 101      X360            2008      Shooter
## 102      X360            2011      Shooter
## 103       PS2            2003       Racing
## 104       Wii            2009         Misc
## 105       PS3            2011      Shooter
## 106       PS4            2015 Role-Playing
## 107        PS            1998     Fighting
## 108       Wii            2006       Action
## 109       3DS            2016 Role-Playing
## 110        PS            1998     Platform
## 111      WiiU            2014       Racing
## 112        GC            2001     Fighting
## 113        GC            2003       Racing
## 114       PS2            2004       Racing
## 115       PS2            2002      Shooter
## 116        PS            1996     Platform
## 117       Wii            2012         Misc
## 118      X360            2008      Shooter
## 119       PS3            2011       Action
## 120       Wii            2010       Sports
## 121       PS3            2007      Shooter
## 122       PS3            2009       Action
## 123       PS3            2011       Sports
## 124        DS            2005         Misc
## 125       NES            1986       Action
## 126       PS3            2010       Action
## 127       PS3            2013       Sports
## 128       PS3            2012       Action
## 129       Wii            2010     Platform
## 130        XB            2001      Shooter
## 131       PS3            2011 Role-Playing
## 132       GBA            2004 Role-Playing
## 133       PS2            2002 Role-Playing
## 134        GB            2000 Role-Playing
## 135      X360            2009      Shooter
## 136      X360            2010       Action
## 137        GC            2002     Platform
## 138      SNES            1992     Fighting
## 139        PC            2004 Role-Playing
## 140        PS            1999       Action
## 141      X360            2011      Shooter
## 142      X360            2010       Sports
## 143      X360            2006      Shooter
## 144       PS4            2014       Sports
## 145       PS2            2001       Action
## 146       GEN            1992     Platform
## 147        PS            1998       Action
## 148       PS3            2008       Action
## 149       PS2            2006 Role-Playing
## 150       PS3            2013       Action
## 151       PS3            2008     Platform
## 152        PS            1998       Action
## 153        DS            2009 Role-Playing
## 154        PS            1996     Fighting
## 155       PS4            2014      Shooter
## 156       Wii            2007       Action
## 157        DS            2006   Simulation
## 158       NES            1988       Puzzle
## 159       N64            1999     Fighting
## 160       PS3            2009       Action
## 161      X360            2007    Adventure
## 162      X360            2009       Racing
## 163       GBA            2001     Platform
## 164       PSP            2008 Role-Playing
## 165       PS3            2011       Action
## 166      XOne            2014       Action
## 167       GBA            2001       Racing
## 168       GBA            2001     Platform
## 169       N64            1999     Strategy
## 170       PS2            2001     Platform
## 171       PS3            2008      Shooter
## 172       PS4            2016      Shooter
## 173        GB            1989       Puzzle
## 174       PS3            2009 Role-Playing
## 175        GB            1999         Misc
## 176        PS            2000 Role-Playing
## 177      X360            2012       Action
## 178       PS2            2003 Role-Playing
## 179       N64            1999     Platform
## 180      XOne            2014      Shooter
## 181       PS3            2014         Misc
## 182      X360            2009       Action
## 183        PS            1997       Action
## 184       PS2             N/A       Sports
## 185       3DS            2013   Simulation
## 186      WiiU            2012     Platform
## 187       PS2            2004 Role-Playing
## 188       GBA            2003     Platform
## 189        DS            2007       Puzzle
## 190        GB            1994     Platform
## 191      X360            2012       Action
## 192      SNES            1995     Platform
## 193        PC            2012 Role-Playing
## 194       PS2            2003      Shooter
## 195        GB            1992     Platform
## 196        PC            1996   Simulation
## 197       PS2            2006         Misc
## 198      X360            2010 Role-Playing
## 199        DS            2008       Sports
## 200       PS3            2009       Action
## 201        DS            2007       Action
## 202        GB            1999     Platform
## 203       PS3            2010       Sports
## 204        PS            1996       Action
## 205       PSP            2006       Action
## 206        PS            1999       Sports
## 207        PS            1999     Strategy
## 208        PS            1998     Platform
## 209       PS2            2007         Misc
## 210       Wii            2007      Shooter
## 211        DS            2007 Role-Playing
## 212      X360            2008 Role-Playing
## 213       PS3            2007       Action
## 214       PS2            2005       Sports
## 215       N64            1997       Racing
## 216       PSP            2010 Role-Playing
## 217      WiiU            2014     Fighting
## 218       NES            1990       Puzzle
## 219        PC            2010     Strategy
## 220       PS3            2007    Adventure
## 221       PS3            2010       Action
## 222        PS            1999       Racing
## 223        DS            2007       Action
## 224        PS            2000       Action
## 225      X360            2011       Action
## 226       PS4            2014       Action
## 227       PS2            2003       Racing
## 228        PS            2000       Sports
## 229       PS2            2002       Action
## 230        PS            1996       Action
## 231       Wii            2008   Simulation
## 232       PS4            2015       Action
## 233      SNES            1991       Action
## 234        GC            2002       Action
## 235       Wii            2007         Misc
## 236       3DS            2013       Action
## 237      X360            2011       Racing
## 238       Wii            2009       Sports
## 239       PS2            2004       Sports
## 240      X360            2007         Misc
## 241      2600            1981     Platform
## 242       PS2            2006       Sports
## 243      XOne            2015      Shooter
## 244       PS2            2002       Action
## 245        PS            2000 Role-Playing
## 246       PS4            2016      Shooter
## 247       PS2            2005       Action
## 248      WiiU            2015      Shooter
## 249      WiiU            2012         Misc
## 250       PS2            2001       Sports
## 251       PS2            2006       Sports
## 252      X360            2006 Role-Playing
## 253       NES            1987    Adventure
## 254       PS2            2005       Racing
## 255       Wii            2010         Misc
## 256       PS3            2014      Shooter
## 257       PS3            2006      Shooter
## 258       GEN            1991     Platform
## 259       PS2            2005 Role-Playing
## 260       3DS            2011       Action
## 261      WiiU            2013     Platform
## 262       PS4            2014         Misc
## 263      2600            1980      Shooter
## 264      X360            2014      Shooter
## 265       PS3            2014       Sports
## 266      X360            2008 Role-Playing
## 267       GBA            2001         Misc
## 268       PS3            2009       Action
## 269       PS2            2004       Action
## 270       PS3            2011       Action
## 271      XOne            2015 Role-Playing
## 272      X360            2013       Sports
## 273       PSP            2006     Platform
## 274        PC            1995     Strategy
## 275       PS2            2005       Sports
## 276       PS2            2003         Misc
## 277       PS3            2007       Racing
## 278      X360            2011       Action
## 279      X360            2011       Sports
## 280       NES            1989       Action
## 281       PS3            2009     Fighting
## 282       NES            1984       Racing
## 283        PS            1997       Action
## 284       PS2            2002       Sports
## 285        PC            1997      Shooter
## 286      SNES            1995     Platform
## 287       PS2            2006       Sports
## 288      SNES            1992     Fighting
## 289        PC            2007 Role-Playing
## 290       PS4            2016      Shooter
## 291       PS2            2007       Action
## 292       PS2            2005       Sports
## 293      X360            2010 Role-Playing
## 294      X360            2007       Racing
## 295       Wii            2007         Misc
## 296       PS4            2014       Action
## 297        PS            1996         Misc
## 298       PS2            2000     Fighting
## 299       PS4            2014      Shooter
## 300       N64            1997      Shooter
## 301       NES            1984       Sports
## 302       PS2            2005         Misc
## 303      X360            2009      Shooter
## 304       PS4            2015 Role-Playing
## 305       PS4            2014       Action
## 306       PS4            2015       Action
## 307       Wii            2011       Action
## 308       PS3            2008 Role-Playing
## 309        DS            2007       Puzzle
## 310        GB            1994     Platform
## 311       Wii            2009       Sports
## 312       PS2            2003       Sports
## 313       3DS            2014 Role-Playing
## 314        PC            2011 Role-Playing
## 315       PS4            2015       Sports
## 316       PS2            2005     Fighting
## 317       NES            1988 Role-Playing
## 318       PS3            2006       Racing
## 319       3DS            2011   Simulation
## 320       PS2            2004       Sports
## 321       PS3            2010       Sports
## 322        PS            1995         Misc
## 323        GB            1992       Action
## 324       PS4            2013      Shooter
## 325        DS            2007         Misc
## 326       PS4            2016      Shooter
## 327       Wii            2007         Misc
## 328        PS            1996       Action
## 329        DS            2009 Role-Playing
## 330      X360            2008       Action
## 331        PC            2002   Simulation
## 332       PSP            2007     Platform
## 333        PS            2001       Action
## 334       Wii            2011       Sports
## 335        PS            1999       Action
## 336       Wii            2007     Platform
## 337        PS            2000     Platform
## 338       PS3            2013       Action
## 339       PS2            2004       Sports
## 340        GB            1998     Strategy
## 341        DS            2009         Misc
## 342       PS2            2002       Sports
## 343      XOne            2015      Shooter
## 344        DS            2007   Simulation
## 345       PSP            2005       Racing
## 346       N64            1998     Platform
## 347       PS2            2002      Shooter
## 348       PS2            2001     Platform
## 349       N64            1999   Simulation
## 350       PS2            2007       Sports
## 351       PS2            2005       Action
## 352       Wii            2008         Misc
## 353       PS3            2009       Sports
## 354       PS2            2004      Shooter
## 355        PC            1994      Shooter
## 356       PS2            2001       Racing
## 357        GC            2001       Action
## 358       PS4            2013      Shooter
## 359       PS2            2005      Shooter
## 360       Wii            2013         Misc
## 361        DS            2007   Simulation
## 362        PS            2000     Fighting
## 363        PS            1997     Platform
## 364       PS2            2006       Action
## 365       PS2            2002       Action
## 366        PS            1997       Action
## 367       PS2            2001      Shooter
## 368       PS2            2005       Action
## 369        PS            2000       Action
## 370      X360            2010       Sports
## 371        PS            1999     Platform
## 372      X360            2008      Shooter
## 373      SNES            1996     Platform
## 374      XOne            2014       Action
## 375       NES            1985       Action
## 376      X360            2009       Action
## 377      X360            2010       Action
## 378       PS2             N/A       Sports
## 379       PS3            2013      Shooter
## 380      X360            2009       Action
## 381      X360            2013      Shooter
## 382      X360            2010      Shooter
## 383        DS            2009       Sports
## 384        DS            2008         Misc
## 385        DS            2006         Misc
## 386       3DS            2013 Role-Playing
## 387      X360            2009      Shooter
## 388       PS2            2002     Fighting
## 389      SNES            1994 Role-Playing
## 390        PS            1998       Action
## 391       PS4            2015       Action
## 392       PS2            2004       Action
## 393        GB            1990       Racing
## 394       PS2            2002       Sports
## 395       PS3            2011     Platform
## 396        PS            2000         Misc
## 397       PS4            2015       Action
## 398      X360            2008       Action
## 399      XOne            2014      Shooter
## 400        PS            1998     Fighting
## 401       N64            2000       Action
## 402       PS3            2012      Shooter
## 403        PS            1998    Adventure
## 404        DS            2006         Misc
## 405       PS2            2002      Shooter
## 406       PS2            2002     Platform
## 407       3DS            2015       Action
## 408       PS2            2005       Action
## 409        DS            2009       Action
## 410       PS2            2001      Shooter
## 411      X360            2013       Action
## 412       PS2            2003       Action
## 413       3DS            2014 Role-Playing
## 414      XOne            2015      Shooter
## 415       PS2            2003       Action
## 416        DS            2008       Puzzle
## 417       PSP            2009       Racing
## 418      XOne            2015       Sports
## 419       Wii            2008         Misc
## 420        PS            1995     Fighting
## 421       PS4            2015       Sports
## 422       PS3            2013       Racing
## 423      XOne            2014      Shooter
## 424        PS            1999      Shooter
## 425      WiiU            2015     Platform
## 426        PS            2000     Fighting
## 427       NES            1983       Sports
## 428      SNES            1995     Fighting
## 429      SNES            1995 Role-Playing
## 430       PSP            2008       Action
## 431       PS2            2003       Action
## 432       PSP            2007 Role-Playing
## 433      X360            2010         Misc
## 434       PS3            2011    Adventure
## 435       PS2            2001   Simulation
## 436        GC            2001   Simulation
## 437       PS2            2007       Sports
## 438        DS            2008    Adventure
## 439        PS            2000       Action
## 440       Wii            2012         Misc
## 441        PS            1998       Racing
## 442       N64            1999       Racing
## 443        DS            2005     Platform
## 444       NES            1990 Role-Playing
## 445        DS            2008         Misc
## 446       PS3            2010 Role-Playing
## 447        DS            2006         Misc
## 448       PS3            2007 Role-Playing
## 449       3DS            2013       Action
## 450       PS3            2012      Shooter
## 451      X360            2010 Role-Playing
## 452       PS2            2002     Fighting
## 453       PS2            2001       Sports
## 454       NES            1986       Sports
## 455        GB            1994     Platform
## 456        PC            2002   Simulation
## 457       Wii             N/A       Action
## 458       3DS            2015   Simulation
## 459        PC            2014   Simulation
## 460      X360            2012      Shooter
## 461        DS            2008       Action
## 462      X360            2008       Action
## 463      X360            2012 Role-Playing
## 464       PS3            2010    Adventure
## 465        PS            1995     Platform
## 466      X360            2008       Action
## 467        XB            2002       Action
## 468       NES            1987     Fighting
## 469       PS2            2002       Sports
## 470       PS4            2013       Sports
## 471       PS3            2009      Shooter
## 472      X360            2012      Shooter
## 473       Wii            2010     Platform
## 474      X360            2012       Sports
## 475       PS2            2007     Fighting
## 476       PS2             N/A     Fighting
## 477      SNES            1993      Shooter
## 478        PC            2000         Misc
## 479       PS2            2002       Sports
## 480       PS2            2001       Action
## 481        PC            2011 Role-Playing
## 482       PS4            2014       Action
## 483       PS2            2003     Platform
## 484       PS2            2002       Action
## 485      XOne            2014      Shooter
## 486       PS3            2010      Shooter
## 487       N64            1996       Racing
## 488       PS2            2003      Shooter
## 489       PS2            2005     Fighting
## 490       GBA            2001       Puzzle
## 491      X360            2009     Fighting
## 492       PS3            2009       Action
## 493        DS            2008     Platform
## 494      XOne            2013      Shooter
## 495      X360            2014       Sports
## 496       GBA            2002     Platform
## 497      X360            2007 Role-Playing
## 498       PS2            2004         Misc
## 499       PS2            2003       Sports
## 500      X360            2008       Sports
## 501       PS2            2001       Sports
## 502       Wii            2007   Simulation
## 503       PS2            2004      Shooter
## 504       Wii            2006       Puzzle
## 505        PS            1999      Shooter
## 506        DS            2007   Simulation
## 507        PS            1998       Racing
## 508      X360            2012       Sports
## 509        XB            2002 Role-Playing
## 510       PS4            2013       Action
## 511        PC            1996     Strategy
## 512      SNES            1990       Racing
## 513       N64            1997     Platform
## 514       PS3            2011     Fighting
## 515      X360            2009       Sports
## 516       PS2            2002     Fighting
## 517      X360            2007      Shooter
## 518        GC            2002      Shooter
## 519       PS3            2010       Action
## 520       GBA            2003       Action
## 521       Wii            2011       Sports
## 522        PC            1994    Adventure
## 523       PS3            2010      Shooter
## 524       PS3            2012       Racing
## 525        DS            2007   Simulation
## 526       PS2            2003     Fighting
## 527        PS            1997       Sports
## 528        PS            1998     Platform
## 529       PS2            2001     Fighting
## 530       PS4            2014       Action
## 531      SNES            1992 Role-Playing
## 532        PS            1996     Fighting
## 533       3DS            2011 Role-Playing
## 534       PS2            2001       Sports
## 535       PS2            2003     Platform
## 536       PS2            2003     Platform
## 537       PS3            2010       Racing
## 538       Wii            2011       Action
## 539        PC            2011      Shooter
## 540       PS4            2015     Fighting
## 541       PS2            2003   Simulation
## 542       PS3            2011      Shooter
## 543      X360            2008       Action
## 544      XOne            2014         Misc
## 545        DS            2006     Platform
## 546      X360            2011       Action
## 547      2600            1980      Shooter
## 548      SNES            1992         Misc
## 549       PS3            2009     Fighting
## 550       N64            2000     Strategy
## 551       NES            1986       Action
## 552       Wii            2007     Platform
## 553       PS3            2015       Sports
## 554       GBA            2002       Action
## 555       PS2            2001       Action
## 556       N64            1998         Misc
## 557      X360            2011    Adventure
## 558      X360            2006      Shooter
## 559      X360            2011       Sports
## 560       PS2            2006       Action
## 561       PS4            2013      Shooter
## 562      X360            2010       Sports
## 563       PS2            2004       Racing
## 564       3DS            2014 Role-Playing
## 565       GEN            1992     Fighting
## 566        DS            2010       Puzzle
## 567        DS            2009       Puzzle
## 568       PS2            2005      Shooter
## 569        PS            1998      Shooter
## 570        XB            2004 Role-Playing
## 571      X360            2008         Misc
## 572      XOne            2016       Sports
## 573        DS            2006       Action
## 574       PS2            2003       Action
## 575       NES            1986     Platform
## 576       PS3            2009       Racing
## 577       N64            1996       Action
## 578       PSP            2006      Shooter
## 579       PS3            2011 Role-Playing
## 580       PS2            2000       Racing
## 581      X360            2010       Sports
## 582       PS2            2004       Sports
## 583      X360            2009     Strategy
## 584      X360            2011       Sports
## 585       PSP            2006     Fighting
## 586      X360            2009       Sports
## 587      X360            2010      Shooter
## 588       PS2            2002       Action
## 589       GEN            1990       Action
## 590       PS3            2009       Action
## 591       PS2            2004       Sports
## 592       Wii            2007       Sports
## 593       PS3            2008       Sports
## 594        DS            2008   Simulation
## 595       PS2            2006     Fighting
## 596      X360            2007       Action
## 597       PS2            2004     Platform
## 598       PS2            2007       Sports
## 599       PSP            2007 Role-Playing
## 600       PS3            2007     Platform
## 601       Wii            2010     Platform
## 602        GC            2001     Platform
## 603       NES            1987 Role-Playing
## 604      X360            2009       Action
## 605       PS3            2012       Sports
## 606      X360            2009 Role-Playing
## 607        GC            2003 Role-Playing
## 608       PSP            2009     Platform
## 609      X360            2008       Sports
## 610      2600             N/A      Shooter
## 611       PS2            2001       Racing
## 612        DS            2010         Misc
## 613      X360            2013       Sports
## 614       N64            2000       Action
## 615       Wii            2012       Action
## 616       NES            1986 Role-Playing
## 617       Wii            2008       Sports
## 618       PS2            2008       Sports
## 619       N64            1999         Misc
## 620      X360            2006 Role-Playing
## 621        XB            2003       Action
## 622       PS2            2002     Fighting
## 623       Wii            2007         Misc
## 624       PS4            2015       Action
## 625        PS            1998       Action
## 626        GC            2002         Misc
## 627      X360            2008       Racing
## 628      X360             N/A         Misc
## 629       PS3            2012       Sports
## 630       PS3            2011       Action
## 631       PS3            2008      Shooter
## 632       PS4            2014       Sports
## 633      SNES            1992 Role-Playing
## 634        PS            1997 Role-Playing
## 635       PS3            2008       Racing
## 636        PS            1996       Racing
## 637       PS2            2003   Simulation
## 638        PC            1997    Adventure
## 639       Wii            2010       Action
## 640       PS4            2015       Racing
## 641      XOne            2016      Shooter
## 642      XOne            2015       Sports
## 643       NES            1988       Sports
## 644        DC            1998     Platform
## 645      X360            2008      Shooter
## 646       Wii            2010         Misc
## 647       PS3            2013       Action
## 648       PSP            2006       Racing
## 649       PS2            2003     Fighting
## 650       PS3            2010       Sports
## 651       PS2            2001       Racing
## 652        PS            1998       Action
## 653       PS2            2007       Racing
## 654      X360            2011      Shooter
## 655        PS            1996       Puzzle
## 656       NES            1987     Fighting
## 657        PC            1997     Strategy
## 658       GBA             N/A    Adventure
## 659        PC            1994         Misc
## 660       GEN            1993             
## 661       PS2            2005         Misc
## 662       PS3            2010       Sports
## 663       N64            1998     Fighting
## 664       PS2            2001         Misc
## 665      X360            2011       Action
## 666        PC            2004      Shooter
## 667       PS2            2004       Action
## 668      X360            2007       Sports
## 669       PS2            2004       Sports
## 670      X360            2010       Sports
## 671       PS3            2009       Sports
## 672        GB            1995     Platform
## 673      X360            2008       Racing
## 674        GB            1996     Platform
## 675        GB            1998 Role-Playing
## 676      X360            2011         Misc
## 677       PS2            2007     Fighting
## 678       3DS            2015       Action
## 679       Wii             N/A       Action
## 680       PS2            2001       Action
## 681      XOne            2015       Sports
## 682      X360            2011       Sports
## 683       Wii            2008       Sports
## 684       N64            2000       Sports
## 685        PS            1997       Action
## 686       PS2            2004      Shooter
## 687        PS            1999       Racing
## 688      SNES            1995 Role-Playing
## 689        PC            2012       Action
## 690        PS            1998       Sports
## 691       3DS            2012 Role-Playing
## 692        DS            2004       Puzzle
## 693       PS3            2013       Action
## 694        PC            1997       Action
## 695       3DS            2015       Action
## 696       PS3            2007       Action
## 697        XB            2004       Racing
## 698       PS3            2009       Sports
## 699       NES            1983     Platform
## 700       PS2            2008       Sports
## 701        DS            2010       Action
## 702      X360            2010   Simulation
## 703        DS            2008 Role-Playing
## 704        PS            1997       Racing
## 705       PS3            2011       Action
## 706       GBA            2002     Platform
## 707       GBA            2001     Platform
## 708       PS3            2009         Misc
## 709       PS4            2016       Action
## 710      XOne            2016      Shooter
## 711       PS2            2002    Adventure
## 712        PS            1997       Sports
## 713        GC            2004 Role-Playing
## 714       PS3            2011       Sports
## 715       PS3            2013       Action
## 716       PS3            2007         Misc
## 717       GBA            2001     Platform
## 718       Wii            2006         Misc
## 719       Wii            2010         Misc
## 720       Wii             N/A      Shooter
## 721      WiiU            2013     Platform
## 722      XOne            2013       Action
## 723       GBA            2001     Platform
## 724       PSP            2008     Fighting
## 725      X360            2013       Sports
## 726       NES            1990       Action
## 727       PS2            2009   Simulation
## 728       PS3            2012      Shooter
## 729       PS2            2003       Action
## 730       Wii            2009 Role-Playing
## 731      X360            2013       Action
## 732        GB            1998    Adventure
## 733       Wii            2007       Action
## 734       PS4            2015      Shooter
## 735       PS3            2008       Action
## 736       PS2            2006       Action
## 737      2600            1981       Action
## 738      X360            2007         Misc
## 739      XOne            2013       Racing
## 740      X360            2008         Misc
## 741       NES            1986       Sports
## 742        GB            2000     Platform
## 743      X360            2010       Racing
## 744        DS            2008       Action
## 745      X360            2010      Shooter
## 746        DS            2007       Puzzle
## 747        XB            2003 Role-Playing
## 748        GB            1992         Misc
## 749        GB            2000     Platform
## 750       PS4            2014       Sports
## 751       PS3            2011       Action
## 752      X360            2006       Action
## 753        GB            2000 Role-Playing
## 754       PS2            2002       Racing
## 755      XOne            2014       Sports
## 756       GBA            2003 Role-Playing
## 757       N64            1998   Simulation
## 758       NES            1984       Sports
## 759      XOne            2016      Shooter
## 760      X360            2010 Role-Playing
## 761        PC            2001   Simulation
## 762        DS            2009       Puzzle
## 763       Wii            2008     Platform
## 764        PS            2000      Shooter
## 765        DS            2006 Role-Playing
## 766       NES            1987       Sports
## 767       Wii            2013     Platform
## 768       PS4            2016      Shooter
## 769       PS3            2012       Action
## 770        PC            1992   Simulation
## 771       NES            1988       Racing
## 772      SNES            1996 Role-Playing
## 773       NES            1983         Misc
## 774      2600            1981      Shooter
## 775       PSP            2007      Shooter
## 776       PS2            2004   Simulation
## 777       GBA            2003 Role-Playing
## 778       Wii            2009       Sports
## 779        XB            2001       Racing
## 780        GB            1989       Sports
## 781       PS3            2011       Sports
## 782       N64            2000       Sports
## 783       PS2            2002       Racing
## 784       PS3            2008       Sports
## 785       PS2            2003       Action
## 786       PS3            2013       Sports
## 787        PS            1998 Role-Playing
## 788        DS            2006       Puzzle
## 789        XB            2002       Action
## 790       PS2            2002     Platform
## 791       PS4            2015      Shooter
## 792      X360            2011     Fighting
## 793       PS3            2009      Shooter
## 794       PS2            2005       Action
## 795        PS            1997       Sports
## 796      X360            2010       Action
## 797       PS2            2003       Action
## 798       PS4            2015       Action
## 799       3DS            2013 Role-Playing
## 800      X360            2006       Action
## 801        PC            2010 Role-Playing
## 802       PS2            2002       Puzzle
## 803        DS            2006 Role-Playing
## 804        PC            1998     Strategy
## 805        GC            2003         Misc
## 806       Wii             N/A         Misc
## 807        PC            1994     Strategy
## 808       3DS            2013 Role-Playing
## 809      X360            2011      Shooter
## 810       Wii            2010       Sports
## 811       PSP            2005       Racing
## 812        PS            2002      Shooter
## 813        DS            2006   Simulation
## 814       Wii            2007   Simulation
## 815       PS4            2014       Racing
## 816       GBA            2001     Strategy
## 817      X360            2009     Fighting
## 818       PSP            2010       Action
## 819       Wii            2010     Platform
## 820       Wii            2009         Misc
## 821       GBA            2005 Role-Playing
## 822       GBA            2004       Action
## 823        PS            1998       Racing
## 824       PSP            2010 Role-Playing
## 825      X360            2010       Action
## 826       PS2            2003     Fighting
## 827      X360            2007       Racing
## 828        GC            2002         Misc
## 829       PS3            2010       Action
## 830      X360            2014       Sports
## 831       PS3            2008       Racing
## 832        DS            2010       Action
## 833       GEN            1992       Sports
## 834       PS2            2006      Shooter
## 835       PS2            2005       Action
## 836       PS3            2007       Racing
## 837       GBA            2003     Platform
## 838      X360            2011         Misc
## 839      X360            2007       Racing
## 840       N64            1998       Sports
## 841        DS            2008         Misc
## 842       PS2            2003       Sports
## 843      X360            2005      Shooter
## 844       Wii            2008         Misc
## 845        DS            2005 Role-Playing
## 846       PS3            2011 Role-Playing
## 847      X360            2011         Misc
## 848      XOne            2013      Shooter
## 849       3DS            2012 Role-Playing
## 850       PS3            2011       Action
## 851       Wii            2014         Misc
## 852       PS4            2014 Role-Playing
## 853      SNES            1993     Fighting
## 854       PS3            2008       Action
## 855       PS3            2008     Fighting
## 856        DS            2007       Puzzle
## 857        PS            1997       Action
## 858        GB            1989       Sports
## 859       GBA            2002       Action
## 860        DS            2009 Role-Playing
## 861       PS3            2010       Sports
## 862      SNES            1991   Simulation
## 863        PS            2002       Action
## 864       PS4            2013       Racing
## 865       PS2            2002     Platform
## 866       PS2            2003       Action
## 867      2600            1981       Action
## 868       PSP            2004       Sports
## 869       PSV            2014         Misc
## 870       NES            1985       Sports
## 871       NES            1986       Racing
## 872      X360            2012       Racing
## 873      X360            2006      Shooter
## 874       PS2            2003       Racing
## 875      X360            2012      Shooter
## 876        XB            2005       Action
## 877        PC            1994      Shooter
## 878       PS2            2003       Sports
## 879       PS2            2003     Fighting
## 880        DS            2006     Platform
## 881       PS3            2008       Racing
## 882        PC            1999         Misc
## 883        GB            1989       Puzzle
## 884        PS            2001    Adventure
## 885       PS3            2010   Simulation
## 886      X360            2008       Sports
## 887       PS2            2004     Fighting
## 888       Wii            2008      Shooter
## 889        PS            1997       Racing
## 890       PS2            2002      Shooter
## 891      X360            2013      Shooter
## 892       PS2            2004 Role-Playing
## 893      SNES            1993     Fighting
## 894       SAT            1995     Fighting
## 895      X360            2008     Fighting
## 896       PS4            2015      Shooter
## 897        GB            1998       Puzzle
## 898        GB            2001       Action
## 899      X360            2014      Shooter
## 900       PS2            2001      Shooter
## 901        PC            2003   Simulation
## 902       3DS            2013         Misc
## 903       PS2            2004       Racing
## 904        PS            1996         Misc
## 905       PS3            2008         Misc
## 906      X360            2009       Racing
## 907       N64            2000         Misc
## 908       PS3            2013 Role-Playing
## 909       PS4            2014     Platform
## 910        GC            2001   Simulation
## 911      X360            2013       Action
## 912       Wii            2008       Sports
## 913       3DS            2013     Platform
## 914       Wii            2008         Misc
## 915       PS3            2008       Sports
## 916      X360            2013       Action
## 917       Wii            2008         Misc
## 918        PS            1999 Role-Playing
## 919       PS2            2004     Fighting
## 920        PS            1999       Sports
## 921       PS2            2005      Shooter
## 922       PS4            2016       Sports
## 923       Wii            2009         Misc
## 924        PS            1998     Fighting
## 925       PS2            2007         Misc
## 926        GC            2002    Adventure
## 927        PS            1998       Sports
## 928       PS3            2013       Sports
## 929       PS2            2001       Action
## 930        GB            2001    Adventure
## 931       PS3            2009     Platform
## 932        XB            2005       Sports
## 933       PS2            2004     Platform
## 934       N64            1997     Platform
## 935        PS            1999 Role-Playing
## 936       PS2            2004         Misc
## 937       Wii            2008       Action
## 938       PS2            2001       Sports
## 939       PS4            2015       Action
## 940        PS            1999 Role-Playing
## 941       PS2            2004     Platform
## 942       GBA            2004 Role-Playing
## 943       NES            1984       Action
## 944       PS3            2012      Shooter
## 945       PS2            2001       Racing
## 946       PS3            2013       Action
## 947        DS            2009       Action
## 948       PS2            2005       Sports
## 949       N64            1998   Simulation
## 950       Wii            2007         Misc
## 951       GBA            2005         Misc
## 952        PS            1996       Racing
## 953       3DS            2014     Platform
## 954      SNES            1993 Role-Playing
## 955       Wii            2010       Action
## 956        DS            2010     Platform
## 957        PS            1995   Simulation
## 958       PS4            2014 Role-Playing
## 959       PS3            2011       Action
## 960        PC            2012 Role-Playing
## 961       GEN            1994     Platform
## 962       PS2            2001         Misc
## 963        PC            2001   Simulation
## 964       PS3            2009 Role-Playing
## 965      X360            2007      Shooter
## 966       PS2            2003   Simulation
## 967        DC            2000       Racing
## 968       PS2            2002     Fighting
## 969       PS4            2016       Action
## 970       PS2            2004     Platform
## 971       PS2            2008         Misc
## 972       GBA            2002     Platform
## 973      X360            2006       Sports
## 974        PS            1999       Sports
## 975       PS3            2010       Action
## 976      XOne            2015       Racing
## 977       PS4            2014       Action
## 978       Wii            2007      Shooter
## 979      WiiU            2013       Action
## 980      SNES            1994     Platform
## 981       3DS            2011       Puzzle
## 982       PS2            2003       Racing
## 983        PS            2001       Action
## 984       PS2            2004       Action
## 985       PS2            2005       Action
## 986      SNES            1991 Role-Playing
## 987       N64            2000     Platform
## 988        XB            2001     Fighting
## 989        DS            2006 Role-Playing
## 990       Wii            2011       Action
## 991       Wii            2007         Misc
## 992        GB            1991    Adventure
## 993        PS            1998     Fighting
## 994       PS3            2009     Fighting
## 995       PS2            2004     Platform
## 996       GBA            2001 Role-Playing
## 997       GEN            1994     Platform
## 998       NES            1986     Platform
## 999       PS2            2004     Fighting
## 1000       XB            2002      Shooter
## 1001      PS2            2002       Action
## 1002      GBA            2007       Action
## 1003      PS2            2004   Simulation
## 1004      PS2            2001   Simulation
## 1005       PS            1998       Sports
## 1006       XB            2004      Shooter
## 1007      PS2            2001       Sports
## 1008      PS4            2016       Sports
## 1009      PS3            2010       Action
## 1010     SNES            1993     Platform
## 1011      NES            1993     Platform
## 1012      NES            1991       Puzzle
## 1013      PS4            2015 Role-Playing
## 1014      PS3            2007       Sports
## 1015     X360            2007      Shooter
## 1016     WiiU            2013         Misc
## 1017      PS2            2008   Simulation
## 1018      GBA            2004         Misc
## 1019      PS3            2013 Role-Playing
## 1020       PS            1999    Adventure
## 1021      PS2            2002 Role-Playing
## 1022      PS3            2014       Action
## 1023     X360            2012       Action
## 1024      PS3            2012 Role-Playing
## 1025      N64            1996       Racing
## 1026       PS            1998       Sports
## 1027      PS4            2015      Shooter
## 1028      PS2            2001       Sports
## 1029      PS4            2013     Platform
## 1030       PS            1998       Action
## 1031       GB            2001       Action
## 1032       DS            2010 Role-Playing
## 1033      GBA            2002     Platform
## 1034     X360            2012       Action
## 1035      PS2            2003       Action
## 1036      PS4            2014       Racing
## 1037      PS2            2008      Shooter
## 1038     XOne            2014       Sports
## 1039       XB            2004       Sports
## 1040      PS2            2003 Role-Playing
## 1041       PC            2011      Shooter
## 1042     X360            2012       Action
## 1043       PS            1998     Platform
## 1044      Wii            2009         Misc
## 1045      PS2            2004   Simulation
## 1046       XB            2003       Racing
## 1047       DS            2006         Misc
## 1048      GBA            2001       Puzzle
## 1049       DS            2008   Simulation
## 1050     X360            2015      Shooter
## 1051       DS            2007         Misc
## 1052      PS2            2009       Sports
## 1053      PS3            2011      Shooter
## 1054     SNES            1993       Puzzle
## 1055      PS2            2006       Sports
## 1056       PC            2010   Simulation
## 1057      PS4            2016       Action
## 1058       DS            2007       Action
## 1059      Wii            2009       Sports
## 1060      PS2            2005      Shooter
## 1061      PS3            2013      Shooter
## 1062       PS            1999         Misc
## 1063      PS3            2015      Shooter
## 1064      N64            1997     Fighting
## 1065       PS            1998     Fighting
## 1066      GBA            2001       Action
## 1067      GBA            2002 Role-Playing
## 1068       DS            2009   Simulation
## 1069       GC            2005       Action
## 1070       DS            2007       Puzzle
## 1071      Wii            2009       Puzzle
## 1072     X360            2008       Racing
## 1073      PS2            2006         Misc
## 1074       PS            1997       Sports
## 1075      Wii            2010     Platform
## 1076      PS3            2008       Action
## 1077       GB            1992       Puzzle
## 1078       PS            1997      Shooter
## 1079       PC            2010     Strategy
## 1080      3DS            2015 Role-Playing
## 1081       PC            2003   Simulation
## 1082      GBA            2002       Action
## 1083      Wii            2008       Sports
## 1084      PSP            2007      Shooter
## 1085      PS2            2003       Sports
## 1086       PS            2000       Sports
## 1087       XB            2005      Shooter
## 1088      NES            1989     Platform
## 1089       PS            2001       Sports
## 1090      GBA            2001    Adventure
## 1091       XB            2003       Racing
## 1092      PS3            2009 Role-Playing
## 1093      PS2            2001       Racing
## 1094      PS2            2003       Sports
## 1095      PS3            2006     Fighting
## 1096       PC            2013     Strategy
## 1097      PS2            2003     Platform
## 1098      PS4            2015    Adventure
## 1099      Wii            2008       Sports
## 1100      GEN            1992     Fighting
## 1101      PS2            2000       Sports
## 1102      Wii            2008       Sports
## 1103      PS2            2004       Sports
## 1104     X360            2013       Action
## 1105      PS2            2002       Sports
## 1106     X360            2012       Action
## 1107      PS2            2005     Fighting
## 1108      PS4            2016 Role-Playing
## 1109     2600            1981       Puzzle
## 1110      Wii            2011     Platform
## 1111       GC            2004         Misc
## 1112     SNES            1991      Shooter
## 1113      Wii            2008       Action
## 1114     X360            2006       Racing
## 1115      PS3            2007       Action
## 1116      PS2            2004 Role-Playing
## 1117      Wii            2007   Simulation
## 1118      GBA            2004     Platform
## 1119     X360            2008      Shooter
## 1120     2600            1982       Puzzle
## 1121       PS            1999      Shooter
## 1122      NES            1986       Action
## 1123      PS2            2002       Sports
## 1124      PS2            2005       Sports
## 1125      PS2            2004       Action
## 1126     XOne            2014      Shooter
## 1127       XB            2004       Sports
## 1128      PS3            2013    Adventure
## 1129       GC            2001     Strategy
## 1130      PS2            2003       Sports
## 1131     X360            2014       Sports
## 1132       PC             N/A      Shooter
## 1133       PS            1999     Platform
## 1134      PS2            2004       Sports
## 1135     X360            2012      Shooter
## 1136     X360            2006   Simulation
## 1137      PS2            2005       Sports
## 1138     X360            2010   Simulation
## 1139       GC            2003       Racing
## 1140      PS4            2013       Action
## 1141       PS            1998       Racing
## 1142      PS3            2014      Shooter
## 1143      PS3             N/A         Misc
## 1144       DS            2007 Role-Playing
## 1145      PS2            2004       Sports
## 1146       GB            1989       Sports
## 1147       GB            1998     Strategy
## 1148       GC            2005       Sports
## 1149      PS2            2005         Misc
## 1150     X360            2011      Shooter
## 1151       DS            2006       Sports
## 1152       DS            2007       Action
## 1153      PS2            2005       Action
## 1154      N64            1998       Racing
## 1155     2600            1981      Shooter
## 1156     X360            2010       Action
## 1157       PS            1999       Action
## 1158       GC            2003     Platform
## 1159      Wii            2013       Action
## 1160      PS2            2004       Sports
## 1161       PC            1996 Role-Playing
## 1162     X360            2008       Action
## 1163       GC            2006       Action
## 1164       PS            1996     Fighting
## 1165     2600            1982     Platform
## 1166      PS3            2007       Sports
## 1167       PS            1999       Racing
## 1168      Wii            2006 Role-Playing
## 1169      3DS            2012       Action
## 1170      Wii            2008   Simulation
## 1171     X360            2008     Fighting
## 1172       PS            2000         Misc
## 1173      PS3            2011     Platform
## 1174      GBA            2002     Platform
## 1175     WiiU            2015         Misc
## 1176      PS3            2008       Action
## 1177     XOne            2013       Action
## 1178      PS2            2009       Sports
## 1179      PS2            2001       Sports
## 1180     X360            2013      Shooter
## 1181     XOne            2014       Action
## 1182       DS            2008         Misc
## 1183     X360            2015       Sports
## 1184     XOne            2014       Sports
## 1185      PS2            2002      Shooter
## 1186       GC            2005         Misc
## 1187       DS            2008 Role-Playing
## 1188       DS            2008         Misc
## 1189      PS2            2000       Racing
## 1190      PS2            2006     Fighting
## 1191     X360            2012       Racing
## 1192      Wii            2008       Sports
## 1193      NES            1988     Platform
## 1194       DS            2007       Action
## 1195       PS            1995       Action
## 1196     SNES            1990       Action
## 1197       DS            2009 Role-Playing
## 1198       GB            2001 Role-Playing
## 1199      GBA            2003         Misc
## 1200       DS            2008   Simulation
## 1201      Wii            2011       Action
## 1202      PS2            2002       Racing
## 1203       XB            2003      Shooter
## 1204     X360            2010       Action
## 1205      N64            2000       Action
## 1206       PS            2001       Action
## 1207      Wii            2009         Misc
## 1208       PC            1999     Strategy
## 1209      PS4            2014      Shooter
## 1210     X360            2010       Action
## 1211       DS            2011         Misc
## 1212      PS3            2010      Shooter
## 1213      PS2            2000 Role-Playing
## 1214       PC            2003     Strategy
## 1215      Wii            2008       Sports
## 1216     X360            2006      Shooter
## 1217      PS4            2016     Platform
## 1218      PS2            2005       Sports
## 1219       PS            1996      Shooter
## 1220      PSV            2011      Shooter
## 1221      Wii            2011         Misc
## 1222      PS3            2012       Sports
## 1223     SNES            1994     Fighting
## 1224       PS            1998       Sports
## 1225      PS3            2012       Action
## 1226       GC            2003       Sports
## 1227       PS            1997       Sports
## 1228       PC            2012      Shooter
## 1229      Wii            2007       Action
## 1230       PS            1997     Fighting
## 1231      PS2            2002       Sports
## 1232     WiiU            2014     Platform
## 1233       PS            1996       Racing
## 1234      NES            1984      Shooter
## 1235      NES            1984       Racing
## 1236       PS            1998       Racing
## 1237       PC            2010 Role-Playing
## 1238       PS            1998       Sports
## 1239      PS3            2009     Fighting
## 1240       GC            2002       Puzzle
## 1241      PS2            2002       Action
## 1242       DS            2008    Adventure
## 1243      Wii            2008   Simulation
## 1244     X360            2011      Shooter
## 1245      3DS            2013 Role-Playing
## 1246      Wii            2009      Shooter
## 1247      NES            1988       Action
## 1248       PS            2001     Fighting
## 1249       PS            1997       Sports
## 1250      PS2            2007       Action
## 1251       PS            1997         Misc
## 1252       DS            2007       Action
## 1253       PC            2011       Sports
## 1254      PS3            2011 Role-Playing
## 1255       GC            2003     Fighting
## 1256      PS3            2006      Shooter
## 1257      PS2            2000       Racing
## 1258       PS            1998       Sports
## 1259      PS2            2002      Shooter
## 1260      PS2            2000       Sports
## 1261      NES            1986     Platform
## 1262      N64            2000     Fighting
## 1263      NES            1985     Platform
## 1264      SCD            1993     Platform
## 1265      PS3            2010       Action
## 1266       PS            1998       Action
## 1267      PS3            2008         Misc
## 1268       GC            2003 Role-Playing
## 1269       XB            2002      Shooter
## 1270      PS2            2008       Sports
## 1271     X360            2010       Action
## 1272      N64            2000     Platform
## 1273      PS2            2006         Misc
## 1274      PS3            2010       Action
## 1275     XOne            2015       Action
## 1276      PS4            2016      Shooter
## 1277      PS2            2006      Shooter
## 1278      N64            1999     Fighting
## 1279       GB            1997     Platform
## 1280      NES            1990       Sports
## 1281      PSP            2007       Racing
## 1282       DS            2006    Adventure
## 1283      PS3            2011      Shooter
## 1284       DS            2008    Adventure
## 1285      Wii            2009         Misc
## 1286     X360            2008       Action
## 1287      PS2            2005       Sports
## 1288      PS2            2004     Fighting
## 1289     X360            2011       Action
## 1290       XB            2004       Action
## 1291      3DS            2013     Platform
## 1292       DS            2007   Simulation
## 1293      GBA            2003     Platform
## 1294      N64            1999       Action
## 1295      PSV            2012       Action
## 1296     X360            2012      Shooter
## 1297     X360            2006     Fighting
## 1298       PS            1998 Role-Playing
## 1299      GBA            2004     Platform
## 1300       DS            2010       Puzzle
## 1301      PS2            2003         Misc
## 1302       PS             N/A       Sports
## 1303      3DS            2013 Role-Playing
## 1304       GC            2001       Puzzle
## 1305      PS3            2008     Fighting
## 1306     2600            1981     Platform
## 1307       PS            1998     Fighting
## 1308      Wii            2009       Sports
## 1309       GC            2005       Sports
## 1310       DS            2008     Platform
## 1311       PS            1998     Fighting
## 1312     X360            2008      Shooter
## 1313     X360            2011      Shooter
## 1314      PS2            2004       Action
## 1315      PS3            2014       Sports
## 1316      PS2            2004      Shooter
## 1317      PS2            2003       Action
## 1318       GB            1996   Simulation
## 1319      NES            1984         Misc
## 1320     SNES            1993     Fighting
## 1321       GB            1997   Simulation
## 1322      N64            1999         Misc
## 1323      PS3            2011 Role-Playing
## 1324       DS            2011     Strategy
## 1325      PS2            2005       Sports
## 1326      PS4            2013       Sports
## 1327      Wii            2008      Shooter
## 1328      PS2            2007         Misc
## 1329     SNES            1996     Platform
## 1330      Wii            2010       Racing
## 1331     X360            2013       Action
## 1332       DS            2007         Misc
## 1333      PS2            2004       Sports
## 1334      PS2            2002       Sports
## 1335     X360            2010       Action
## 1336       PS            1999       Action
## 1337     X360            2007     Fighting
## 1338     X360            2010       Racing
## 1339      Wii            2007         Misc
## 1340      PSP            2006     Fighting
## 1341       GB            1988     Platform
## 1342       DS            2007    Adventure
## 1343      GBA            2004     Platform
## 1344       PS            1999       Sports
## 1345       PC            2011     Strategy
## 1346      Wii            2008       Puzzle
## 1347      PSP            2006       Racing
## 1348      PS3            2008      Shooter
## 1349      PS3            2012 Role-Playing
## 1350      PS2            2002       Sports
## 1351      PS2            2005       Sports
## 1352       PC            2013   Simulation
## 1353      GBA            2004       Action
## 1354      PS2            2004       Sports
## 1355     SNES            1994       Action
## 1356      NES            1987       Sports
## 1357      PS3            2011      Shooter
## 1358      Wii            2008       Sports
## 1359      PS3            2013       Action
## 1360       GC            2002       Action
## 1361      Wii            2006         Misc
## 1362       DS            2010 Role-Playing
## 1363      PS3            2010     Fighting
## 1364       GC            2005       Action
## 1365      PS3            2012       Action
## 1366      GEN            1994     Platform
## 1367     X360            2009         Misc
## 1368       DS            2007         Misc
## 1369      Wii            2010   Simulation
## 1370       PS            1999     Fighting
## 1371      PS2            2003       Racing
## 1372     X360            2013 Role-Playing
## 1373      PS2            2001       Racing
## 1374      PS2            2004       Racing
## 1375     X360            2009     Fighting
## 1376       XB            2002       Action
## 1377      PSP            2006       Action
## 1378     X360            2008       Action
## 1379      PS2            2008       Racing
## 1380       PS            1996       Sports
## 1381      Wii            2009       Action
## 1382      PSP            2004       Racing
## 1383      GBA            2004     Platform
## 1384      NES            1990 Role-Playing
## 1385      PS4            2014       Action
## 1386      PS2            2002       Racing
## 1387     XOne            2014       Racing
## 1388       PS            2001       Sports
## 1389       DS            2009 Role-Playing
## 1390     SNES            1994       Sports
## 1391      NES            1991       Action
## 1392      PS2            2005       Action
## 1393      Wii            2007       Action
## 1394     X360            2013     Fighting
## 1395      PS3            2008       Action
## 1396      3DS            2014     Platform
## 1397      Wii            2012       Action
## 1398       XB            2003       Action
## 1399      Wii            2010       Action
## 1400      3DS            2012 Role-Playing
## 1401     XOne            2013       Action
## 1402     XOne            2015     Fighting
## 1403      N64            2000 Role-Playing
## 1404     XOne            2015    Adventure
## 1405       PS            1998      Shooter
## 1406     X360            2011     Platform
## 1407      PS2            2001       Sports
## 1408       DS            2009       Action
## 1409      PS2            2008       Action
## 1410     X360            2011      Shooter
## 1411       PS            1998         Misc
## 1412       DS            2007 Role-Playing
## 1413      Wii            2010      Shooter
## 1414      PS3            2011      Shooter
## 1415       XB            2004 Role-Playing
## 1416      N64            1998     Strategy
## 1417      PSP            2005   Simulation
## 1418      PS3            2010       Action
## 1419      PS3            2006       Racing
## 1420       XB            2004      Shooter
## 1421     X360            2011       Action
## 1422      GBA            2003     Platform
## 1423     X360            2014      Shooter
## 1424      PS2            2008         Misc
## 1425      NES            1986      Shooter
## 1426     SNES            1996 Role-Playing
## 1427     2600            1981      Shooter
## 1428      PS2            2002      Shooter
## 1429      PS3            2012       Action
## 1430       PS            1999   Simulation
## 1431      Wii            2009         Misc
## 1432       PS            1997       Sports
## 1433       DS            2009       Puzzle
## 1434     X360            2008       Racing
## 1435     XOne            2014       Action
## 1436      PS3            2008       Racing
## 1437      PS2            2004       Action
## 1438       PC            2013      Shooter
## 1439       XB            2003       Racing
## 1440     XOne            2016      Shooter
## 1441       PS            1997 Role-Playing
## 1442      PS2            2004         Misc
## 1443      PSP            2007       Sports
## 1444      PSP            2008       Sports
## 1445      Wii            2007    Adventure
## 1446     X360            2007       Sports
## 1447      PS2            2002       Racing
## 1448     X360            2008       Action
## 1449      PS3            2008      Shooter
## 1450      Wii            2010       Action
## 1451     X360            2011       Action
## 1452       DS            2008 Role-Playing
## 1453      PS3            2011     Fighting
## 1454      GEN            1994     Fighting
## 1455       XB            2005      Shooter
## 1456     XOne            2015      Shooter
## 1457      PS3            2010       Racing
## 1458      PSP            2005 Role-Playing
## 1459       GC            2004     Platform
## 1460      PS2            2006       Racing
## 1461     X360            2006      Shooter
## 1462       PC            2000     Strategy
## 1463      PS3            2014       Sports
## 1464      PS2            2003      Shooter
## 1465      PS3            2008      Shooter
## 1466      PS2            2004       Sports
## 1467      3DS            2016       Action
## 1468      PS2            2004     Platform
## 1469     X360            2010       Action
## 1470      GBA            2002       Action
## 1471      N64            1998     Fighting
## 1472       GB            2000       Sports
## 1473      GBA            2003   Simulation
## 1474       PS            2000       Sports
## 1475       GC            2004      Shooter
## 1476      PS4            2016 Role-Playing
## 1477      PS2            2004       Racing
## 1478      PS3            2007     Fighting
## 1479     X360            2013     Platform
## 1480       DS            2009       Action
## 1481     X360            2010     Fighting
## 1482       PC            2008 Role-Playing
## 1483      NES            1985       Puzzle
## 1484       PS            1998       Racing
## 1485      PS2            2002       Sports
## 1486      PSV            2012       Action
## 1487       PS            1997     Fighting
## 1488       DS            2007   Simulation
## 1489      GBA            2003 Role-Playing
## 1490     X360            2010       Sports
## 1491      PSP            2005       Racing
## 1492       PS            1996       Sports
## 1493      PS3            2011    Adventure
## 1494       PS            1996       Racing
## 1495      PS3            2010      Shooter
## 1496      PS2            2002       Racing
## 1497      PS3            2011      Shooter
## 1498      PS3            2010       Action
## 1499      PS2            2005     Platform
## 1500     XOne            2015 Role-Playing
## 1501       PS            1999    Adventure
## 1502     2600            1983     Platform
## 1503      PS2            2002      Shooter
## 1504     X360            2009       Action
## 1505       XB            2004       Racing
## 1506     X360            2009         Misc
## 1507     2600             N/A    Adventure
## 1508      GBA            2002 Role-Playing
## 1509      PS2            2006       Sports
## 1510     WiiU            2015     Platform
## 1511     X360            2012       Action
## 1512      PS2            2005         Misc
## 1513     SNES            1995 Role-Playing
## 1514       PS            1997       Racing
## 1515     X360            2009     Fighting
## 1516     XOne            2015       Action
## 1517       PS            1999 Role-Playing
## 1518      PS3            2014      Shooter
## 1519       DS            2010 Role-Playing
## 1520      PS3            2008       Action
## 1521      GBA            2002 Role-Playing
## 1522       GC            2002       Action
## 1523      Wii            2008         Misc
## 1524      PS3            2011       Action
## 1525      GBA            2003     Platform
## 1526       DS            2005 Role-Playing
## 1527       DS            2007         Misc
## 1528      Wii            2009         Misc
## 1529      PS2            2004      Shooter
## 1530     XOne            2015       Action
## 1531       PC            2015 Role-Playing
## 1532       DS            2010     Platform
## 1533      PS3            2014       Action
## 1534      Wii            2007       Sports
## 1535      PS2            2005       Racing
## 1536      Wii            2008       Sports
## 1537     XOne            2015 Role-Playing
## 1538      PS2            2004 Role-Playing
## 1539      PSP             N/A       Action
## 1540       GB            1989         Misc
## 1541       PS            1999       Action
## 1542       DS            2008   Simulation
## 1543       PS            1999       Racing
## 1544      PS2            2003       Action
## 1545      Wii            2006       Racing
## 1546      PS2            2001       Action
## 1547       PS            1997     Platform
## 1548      Wii            2008         Misc
## 1549     X360            2014       Action
## 1550       PC            2005   Simulation
## 1551      PS3            2014 Role-Playing
## 1552      3DS            2012       Action
## 1553      3DS            2012 Role-Playing
## 1554      PS2            2008       Action
## 1555       PS            1995       Racing
## 1556     2600            1981      Shooter
## 1557     X360            2008       Sports
## 1558       XB            2003       Sports
## 1559      NES            1984      Shooter
## 1560      PS4            2014       Action
## 1561       DS            2008    Adventure
## 1562      PS2            2002 Role-Playing
## 1563      Wii            2008       Sports
## 1564      PS3            2008 Role-Playing
## 1565     X360            2011     Fighting
## 1566       GC            2003     Platform
## 1567      PS2            2004       Action
## 1568       PS            1994     Fighting
## 1569     X360            2012       Action
## 1570      PS3            2013 Role-Playing
## 1571      PS3            2013       Racing
## 1572      Wii            2010       Sports
## 1573      Wii            2007       Sports
## 1574       PS            1998       Puzzle
## 1575       PC            2010       Sports
## 1576       PS            1998       Sports
## 1577       PC            2003       Sports
## 1578       PS            1998         Misc
## 1579       DS            2005   Simulation
## 1580      PS3            2008       Action
## 1581       DS            2008       Action
## 1582       DS            2009     Strategy
## 1583       PS            2000       Sports
## 1584      PS3            2013       Action
## 1585      PS2            2008       Action
## 1586     2600             N/A       Action
## 1587     X360            2014       Action
## 1588      PS3            2008      Shooter
## 1589      NES            1988 Role-Playing
## 1590      NES            1987 Role-Playing
## 1591       PS            1996       Sports
## 1592     X360            2005       Racing
## 1593       GC            2005 Role-Playing
## 1594      PS2            2006      Shooter
## 1595      PS3            2007      Shooter
## 1596      PSV            2012     Platform
## 1597      3DS            2015 Role-Playing
## 1598       PC            2002     Strategy
## 1599       DS            2007       Action
## 1600      PS2            2003       Action
## 1601      PS2            2004       Action
## 1602       PS            1998       Racing
## 1603      PS2            2005      Shooter
## 1604      Wii            2007       Sports
## 1605      PS2            2001 Role-Playing
## 1606       PS            1997     Platform
## 1607      PS2            2000       Action
## 1608      PS2            2008     Fighting
## 1609       GB            1992       Puzzle
## 1610      Wii             N/A       Action
## 1611       XB            2005       Action
## 1612      PS3            2009       Action
## 1613       DS            2007       Action
## 1614      PS3            2012       Sports
## 1615      PS2            2001     Platform
## 1616     XOne            2016       Sports
## 1617       XB            2004       Action
## 1618       DS            2011       Racing
## 1619       XB            2002     Platform
## 1620      PS2            2004       Racing
## 1621      PSP            2009       Action
## 1622       PS            2003         Misc
## 1623      PS3            2014 Role-Playing
## 1624     X360            2012       Action
## 1625       GB            2000       Puzzle
## 1626      GBA            2003     Platform
## 1627       PS            1998       Racing
## 1628     WiiU            2014       Action
## 1629      NES            1986     Platform
## 1630      GBA            2004     Platform
## 1631     X360            2008         Misc
## 1632      GBA            2003       Puzzle
## 1633      PS3            2006       Racing
## 1634      Wii            2007       Action
## 1635      PS3            2010       Sports
## 1636      PS3            2011 Role-Playing
## 1637       DS            2007       Racing
## 1638       GC            2004       Sports
## 1639       PS            1997       Puzzle
## 1640      NES            1984       Puzzle
## 1641       GB            1997         Misc
## 1642       GB            1999         Misc
## 1643      PS2            2006    Adventure
## 1644       PS            1997       Sports
## 1645       PS            1997 Role-Playing
## 1646      GBA            2002 Role-Playing
## 1647       PS            1996   Simulation
## 1648       XB            2001      Shooter
## 1649       PS            1998     Fighting
## 1650      PS2            2002       Sports
## 1651      PS2             N/A       Racing
## 1652      PS2            2006       Racing
## 1653       XB            2001         Misc
## 1654       XB            2004      Shooter
## 1655       DS            2007   Simulation
## 1656      PSP            2005      Shooter
## 1657      3DS            2011     Fighting
## 1658      PS2            2002     Platform
## 1659      PS4            2015       Sports
## 1660       PS            1999       Action
## 1661       PS            2000       Action
## 1662     SNES            1992     Platform
## 1663       PS            2001 Role-Playing
## 1664       GC            2003       Racing
## 1665      PS3            2010     Fighting
## 1666      PS3            2007      Shooter
## 1667     XOne            2015      Shooter
## 1668      GBA            2007         Misc
## 1669      PS3            2009       Action
## 1670       PS            1997       Racing
## 1671      Wii            2008       Puzzle
## 1672      PSP            2005       Sports
## 1673      PS2            2002       Action
## 1674      Wii            2007   Simulation
## 1675      PSP            2006       Sports
## 1676      PS2            2004       Racing
## 1677      PS3            2011       Racing
## 1678       PC            2014   Simulation
## 1679       GC            2004     Strategy
## 1680       DC            1999       Sports
## 1681       GB            1989      Shooter
## 1682      NES            1986      Shooter
## 1683      NES            1986     Platform
## 1684     SNES            1993     Fighting
## 1685       XB            2003       Action
## 1686      PSP            2006       Racing
## 1687      PS2            2001       Sports
## 1688      PSP            2010       Sports
## 1689       PS            1997   Simulation
## 1690      GBA            2003       Racing
## 1691      PS3            2012       Action
## 1692     WiiU            2014       Puzzle
## 1693      GBA            2002     Platform
## 1694      Wii            2008       Sports
## 1695     XOne            2015      Shooter
## 1696      PS2            2006       Action
## 1697      NES            1990     Platform
## 1698      N64            1998       Sports
## 1699       PS            1999       Racing
## 1700       XB             N/A       Action
## 1701      Wii            2008         Misc
## 1702      PSP            2007     Fighting
## 1703       GC            2002       Action
## 1704      GBA            2004 Role-Playing
## 1705       DS            2006       Puzzle
## 1706      PSP            2006       Action
## 1707       PS            1999    Adventure
## 1708       DS            2009       Action
## 1709      3DS            2012       Sports
## 1710     2600            1982       Racing
## 1711      PS3            2013     Fighting
## 1712       GB            2000       Sports
## 1713       DC            1999    Adventure
## 1714      NES            1988       Sports
## 1715     X360            2012         Misc
## 1716      GBA            2001       Sports
## 1717      PS3            2012       Action
## 1718     SNES            1991     Platform
## 1719       PS            1996   Simulation
## 1720      PS2            2005      Shooter
## 1721      PS2            2002     Platform
## 1722      PS3            2012       Action
## 1723      NES            1990     Platform
## 1724      PSP            2008       Action
## 1725      Wii            2009    Adventure
## 1726      PS3            2011     Fighting
## 1727      PS4            2015       Action
## 1728     SNES            1993 Role-Playing
## 1729      N64            1997       Action
## 1730      PS2            2003       Sports
## 1731       PC            2015       Action
## 1732       PC            2010 Role-Playing
## 1733       PS            1998       Sports
## 1734      PS3            2009     Fighting
## 1735       PS            1996       Racing
## 1736       XB            2003      Shooter
## 1737      PS3            2008      Shooter
## 1738       PC            2008     Strategy
## 1739       PS            1996       Racing
## 1740      GBA            2004       Puzzle
## 1741      PS3            2011       Action
## 1742      PS2            2006       Racing
## 1743      PS2            2004      Shooter
## 1744       PS            1997     Fighting
## 1745     X360            2008     Platform
## 1746      PS3            2006     Platform
## 1747      PS2            2001       Racing
## 1748      GBA            2002 Role-Playing
## 1749      SAT            1995       Racing
## 1750      N64            1999      Shooter
## 1751     SNES            1993     Platform
## 1752       PS            1997       Racing
## 1753     X360            2011       Sports
## 1754     XOne            2013       Sports
## 1755      PSP            2007 Role-Playing
## 1756       XB            2005       Action
## 1757     X360            2010      Shooter
## 1758       DS            2007     Platform
## 1759       PC            2008   Simulation
## 1760      PS2            2001       Action
## 1761      PSP            2007      Shooter
## 1762      PS2            2004      Shooter
## 1763      Wii            2008     Platform
## 1764       PC            2012       Sports
## 1765     2600            1980         Misc
## 1766     X360            2012       Action
## 1767       GB            1990       Puzzle
## 1768     SNES            1995       Sports
## 1769      NES            1986       Action
## 1770       DS            2008         Misc
## 1771      PSP            2009       Sports
## 1772       GC            2003         Misc
## 1773       PC            2007      Shooter
## 1774     SNES            1993 Role-Playing
## 1775      PS2            2003     Platform
## 1776      PS4            2014       Sports
## 1777       PS            1998      Shooter
## 1778       PS            1997       Puzzle
## 1779       PS            2000       Action
## 1780      PS2            2003       Action
## 1781      PS2            2005       Action
## 1782       PS            1998 Role-Playing
## 1783      PS3            2007       Action
## 1784      PS3            2013       Sports
## 1785      3DS            2011       Action
## 1786      PS3            2008       Action
## 1787      PS2            2005   Simulation
## 1788       DC            2000       Action
## 1789       GB            1991       Racing
## 1790      N64            1998      Shooter
## 1791      NES            1986       Action
## 1792     SNES            1990   Simulation
## 1793       XB            2003       Action
## 1794      GBA            2005       Action
## 1795      PS3            2007       Sports
## 1796      PS2            2005 Role-Playing
## 1797      PS3            2010       Action
## 1798      PS3            2011     Platform
## 1799     XOne            2014      Shooter
## 1800      PS2            2001   Simulation
## 1801       GC            2004       Racing
## 1802      PS4            2016     Fighting
## 1803       XB            2002   Simulation
## 1804      Wii            2009       Sports
## 1805       PS            1999       Sports
## 1806      GBA            2006       Racing
## 1807      PS4            2016       Action
## 1808      3DS            2011       Action
## 1809       XB            2004      Shooter
## 1810      NES            1983     Platform
## 1811      PS3            2008     Platform
## 1812     X360            2009         Misc
## 1813      PS4            2014      Shooter
## 1814       PS            1998         Misc
## 1815      3DS            2012 Role-Playing
## 1816      GBA            2005 Role-Playing
## 1817      PS3            2007         Misc
## 1818      3DS            2015       Action
## 1819     2600            1982      Shooter
## 1820      PS2            2001       Racing
## 1821      N64            1996   Simulation
## 1822      Wii            2009     Platform
## 1823      PS3            2010       Racing
## 1824      PSP            2005      Shooter
## 1825      PS3            2011         Misc
## 1826       XB            2005      Shooter
## 1827      NES            1992       Puzzle
## 1828     X360            2011         Misc
## 1829      PS2            2009         Misc
## 1830       PC            2007       Sports
## 1831      PS3            2009       Action
## 1832      PSV            2012 Role-Playing
## 1833       XB            2004       Action
## 1834     X360            2010      Shooter
## 1835      PS3            2009         Misc
## 1836     X360            2011       Action
## 1837       XB            2003      Shooter
## 1838      PS2            2007       Action
## 1839      PS2            2007         Misc
## 1840      PS3            2011     Fighting
## 1841      PS2             N/A         Misc
## 1842       XB            2005       Action
## 1843      GEN            1994       Sports
## 1844      NES            1983     Platform
## 1845       PS            1995 Role-Playing
## 1846       PS            1999 Role-Playing
## 1847     WiiU            2013     Strategy
## 1848     X360            2013       Sports
## 1849      PS4            2015     Fighting
## 1850      PSP            2004       Puzzle
## 1851     2600            1981      Shooter
## 1852     2600            1982     Platform
## 1853      PS3            2010       Action
## 1854       PS            1997       Sports
## 1855       DS            2011     Strategy
## 1856      NES            1984       Puzzle
## 1857       GB            1989 Role-Playing
## 1858      NES            1989 Role-Playing
## 1859      N64            1998       Racing
## 1860      NES            1983     Platform
## 1861       GB            1999     Strategy
## 1862      PS3            2011   Simulation
## 1863      PS2            2001       Sports
## 1864      PS2            2006         Misc
## 1865      PS2            2006         Misc
## 1866       GC            2003 Role-Playing
## 1867     WiiU            2013     Platform
## 1868      Wii            2007       Racing
## 1869      PS3            2008       Racing
## 1870     X360            2007      Shooter
## 1871       PS            1998 Role-Playing
## 1872       DS            2007   Simulation
## 1873     X360            2013       Sports
## 1874      PS2            2006    Adventure
## 1875      PS3            2009         Misc
## 1876      GBA            2003 Role-Playing
## 1877      Wii            2008      Shooter
## 1878       DC            2000       Sports
## 1879       PS            1998   Simulation
## 1880      PSP            2005 Role-Playing
## 1881      PS4            2015       Racing
## 1882       XB            2003       Sports
## 1883      Wii            2009     Platform
## 1884      PS2            2006       Action
## 1885     X360            2010       Racing
## 1886      PS2            2002      Shooter
## 1887       PS            1997   Simulation
## 1888      PS3            2010     Fighting
## 1889       DS            2011       Action
## 1890     X360            2012       Action
## 1891     X360            2009       Sports
## 1892       PS            1998       Sports
## 1893      PS2            2003       Racing
## 1894      PS2            2002     Platform
## 1895       DS            2008   Simulation
## 1896      PSP            2005         Misc
## 1897      PS2            2002       Sports
## 1898       PC            2009     Strategy
## 1899      PS3            2007     Fighting
## 1900      PS3            2010       Action
## 1901      PS3            2010       Action
## 1902     2600            1982     Platform
## 1903      PS2            2004      Shooter
## 1904      PS3            2013 Role-Playing
## 1905     XOne            2016       Racing
## 1906     X360            2014       Action
## 1907       PS            1998       Sports
## 1908      PSP            2008       Action
## 1909      GBA            2003     Fighting
## 1910      GBA            2002     Platform
## 1911       GC            2005      Shooter
## 1912     X360            2014      Shooter
## 1913      PSP            2007       Action
## 1914       PS            1999         Misc
## 1915       DS            2006       Action
## 1916      PS2            2006      Shooter
## 1917      Wii            2010       Sports
## 1918       DS            2008   Simulation
## 1919      PS3            2008       Action
## 1920       PC            1999       Sports
## 1921      SAT            1994     Fighting
## 1922      PS2            2009     Fighting
## 1923      Wii            2009       Sports
## 1924     X360            2011     Fighting
## 1925     X360            2008       Action
## 1926       PS            1997       Sports
## 1927     X360            2007       Sports
## 1928      PS2            2005     Fighting
## 1929      Wii            2009       Sports
## 1930       DS            2009    Adventure
## 1931       PS            1995       Racing
## 1932      PSP            2005       Sports
## 1933      PS3            2008     Fighting
## 1934     X360            2010       Action
## 1935      PS3            2013 Role-Playing
## 1936       PS            1999       Racing
## 1937       PS            1998       Sports
## 1938      PS2            2006     Fighting
## 1939      PS2            2002       Racing
## 1940      PSP            2009       Action
## 1941       DS            2008   Simulation
## 1942      PS3            2007      Shooter
## 1943       PS            1998         Misc
## 1944     X360            2009         Misc
## 1945     X360            2008       Action
## 1946      PS2            2005       Sports
## 1947       PS            1999     Strategy
## 1948      PS2            2003       Action
## 1949     XOne            2016      Shooter
## 1950      N64            1997       Sports
## 1951      N64            1998       Sports
## 1952     X360            2010      Shooter
## 1953      PS3            2012       Action
## 1954       PC            2001 Role-Playing
## 1955      Wii            2007    Adventure
## 1956      GBA            2004       Action
## 1957      PS2            2002       Racing
## 1958     X360            2010       Action
## 1959     X360            2008      Shooter
## 1960     XOne            2013       Action
## 1961      PS3            2007   Simulation
## 1962      PS3            2011       Racing
## 1963      Wii            2008       Sports
## 1964      PS3            2007       Racing
## 1965       DS            2007      Shooter
## 1966     2600            1981      Shooter
## 1967      Wii            2009       Action
## 1968      PSP            2006      Shooter
## 1969     2600            1980         Misc
## 1970       DS            2007     Platform
## 1971       PS            1996 Role-Playing
## 1972      NES            1985     Fighting
## 1973     SNES            1996       Sports
## 1974      NES            1986     Platform
## 1975      PS2            2002       Sports
## 1976      PS3            2012       Action
## 1977       XB            2001       Racing
## 1978       PS            2000       Sports
## 1979      PS4            2014       Sports
## 1980       XB            2005       Racing
## 1981      PS3            2007       Sports
## 1982       PS            1998   Simulation
## 1983      PS2            2003       Sports
## 1984       DS            2007   Simulation
## 1985       PS             N/A       Action
## 1986     X360            2009     Fighting
## 1987       PS            1997 Role-Playing
## 1988      PS3            2012       Action
## 1989       PS            2000       Racing
## 1990       PS            1996       Action
## 1991       GC            2003     Fighting
## 1992      PS2            2006   Simulation
## 1993      PS3            2010      Shooter
## 1994      N64            1997       Puzzle
## 1995       PS            1998       Racing
## 1996      GBA            2001       Racing
## 1997     X360            2006     Platform
## 1998       DS            2010       Racing
## 1999       XB            2005       Racing
## 2000     X360            2007       Action
## 2001      PS3            2012       Racing
## 2002     X360            2011      Shooter
## 2003      PS2            2005       Racing
## 2004      PSP            2005       Racing
## 2005      PS3            2012       Action
## 2006     X360            2011       Action
## 2007      PS3            2007      Shooter
## 2008       DS            2005     Platform
## 2009      Wii            2008       Action
## 2010      PS2            2003       Sports
## 2011       GB             N/A     Platform
## 2012      NES            1985       Puzzle
## 2013     WiiU            2016       Action
## 2014      PS3            2008       Action
## 2015       PC            1996       Action
## 2016       PS            1998     Fighting
## 2017      Wii            2009    Adventure
## 2018       DS            2008         Misc
## 2019      PSP            2009       Racing
## 2020      Wii            2007       Sports
## 2021       DS            2010   Simulation
## 2022      Wii            2007       Sports
## 2023      Wii            2007     Fighting
## 2024       GC            2004     Platform
## 2025     XOne            2016       Sports
## 2026     X360            2007      Shooter
## 2027      PS3            2008     Platform
## 2028     SNES            1993       Action
## 2029       PS            1997       Action
## 2030      Wii            2011       Action
## 2031      Wii            2010         Misc
## 2032     X360            2009       Action
## 2033       DS            2007   Simulation
## 2034     X360            2011      Shooter
## 2035      PS3            2013     Platform
## 2036       XB            2006       Sports
## 2037      3DS            2011     Platform
## 2038      Wii            2008         Misc
## 2039      PS2            2004       Action
## 2040       DS            2012 Role-Playing
## 2041      Wii            2008     Platform
## 2042       PS            1998       Puzzle
## 2043      Wii            2007     Fighting
## 2044       DS            2009    Adventure
## 2045     X360            2007   Simulation
## 2046      Wii            2007       Action
## 2047     SNES            1995       Sports
## 2048       PC            2003       Sports
## 2049      PSV            2012       Racing
## 2050     X360            2008       Action
## 2051     X360            2014       Action
## 2052      PS4            2014     Platform
## 2053       DS            2006         Misc
## 2054     X360            2008       Action
## 2055       PS            1997   Simulation
## 2056     WiiU            2012       Action
## 2057     WiiU            2016     Fighting
## 2058      PS2            2003       Racing
## 2059       PS            1997 Role-Playing
## 2060      Wii            2009      Shooter
## 2061      PSP            2010       Action
## 2062      PS2            2000     Fighting
## 2063      NES            1985      Shooter
## 2064       GB            1997         Misc
## 2065      N64            2000       Racing
## 2066      NES            1991       Sports
## 2067      PS2            2004         Misc
## 2068       XB            2003     Fighting
## 2069     X360            2008       Sports
## 2070     X360            2006       Sports
## 2071       PS            1995       Racing
## 2072       PS            2000       Sports
## 2073       PS            1996       Sports
## 2074      PS2            2002       Action
## 2075      PS3            2011     Platform
## 2076       PS            2000         Misc
## 2077       XB            2000       Sports
## 2078     X360            2013         Misc
## 2079     X360            2011       Sports
## 2080       GC            2003       Racing
## 2081     X360            2012       Action
## 2082       DS            2011     Platform
## 2083      PS3            2008      Shooter
## 2084       PS            1998     Platform
## 2085      PS2            2000       Action
## 2086      PS3            2009       Racing
## 2087      PS3            2008         Misc
## 2088       GC            2005     Platform
## 2089      PS3            2009   Simulation
## 2090       DS            2007    Adventure
## 2091      PSP            2006   Simulation
## 2092     X360            2011 Role-Playing
## 2093      Wii            2009       Racing
## 2094       DS            2008       Puzzle
## 2095      PSP            2008       Racing
## 2096      PSP            2008       Sports
## 2097       DS            2008   Simulation
## 2098      PS4            2015 Role-Playing
## 2099      Wii            2009       Sports
## 2100      PS3            2010 Role-Playing
## 2101       PC            2008 Role-Playing
## 2102      GBA            2005         Misc
## 2103      NES            1993       Puzzle
## 2104       DS            2005     Strategy
## 2105      N64            1998       Racing
## 2106      Wii            2007     Fighting
## 2107     2600             N/A      Shooter
## 2108     X360            2013       Action
## 2109      PS2             N/A Role-Playing
## 2110      PS3            2013         Misc
## 2111     X360            2013       Action
## 2112      PS2            2009       Sports
## 2113     X360            2009       Sports
## 2114       XB            2005       Sports
## 2115     X360            2015       Sports
## 2116       PC            2005       Action
## 2117      PS3            2007       Sports
## 2118      GBA            2003     Strategy
## 2119     X360            2009       Action
## 2120      PS3            2013       Action
## 2121       DS            2006   Simulation
## 2122      PS2            2003       Sports
## 2123      PS2            2007       Action
## 2124       DS            2010       Action
## 2125      Wii            2010         Misc
## 2126       XB            2004       Sports
## 2127       PC            2012 Role-Playing
## 2128       DS            2006       Racing
## 2129      Wii            2009         Misc
## 2130     SNES            1992 Role-Playing
## 2131     X360            2011       Action
## 2132     2600            1981     Platform
## 2133     X360             N/A       Action
## 2134       GC            2006       Action
## 2135       PS            2000      Shooter
## 2136      PS2            2002 Role-Playing
## 2137       PC            2012      Shooter
## 2138      PS4            2015      Shooter
## 2139      PS3            2013       Action
## 2140      Wii            2012 Role-Playing
## 2141       PS            1999         Misc
## 2142       PS            1999   Simulation
## 2143      N64            1996     Fighting
## 2144      NES            1986      Shooter
## 2145      PS2            2000       Sports
## 2146       PC            2012   Simulation
## 2147      Wii            2010         Misc
## 2148      Wii            2008     Platform
## 2149      3DS            2012 Role-Playing
## 2150      PS2            2002     Platform
## 2151       XB            2002     Fighting
## 2152       PC            2011       Action
## 2153      PS3            2012      Shooter
## 2154       XB            2004       Sports
## 2155      PSP            2006    Adventure
## 2156      3DS            2012       Sports
## 2157      3DS            2011   Simulation
## 2158      PS2             N/A         Misc
## 2159      PS2            2004         Misc
## 2160       DS            2008       Sports
## 2161      PS2            2005       Action
## 2162     X360            2008     Platform
## 2163       GC            2003     Platform
## 2164      PS3            2014       Action
## 2165      PS3            2012       Action
## 2166      Wii            2009       Action
## 2167      Wii            2012       Action
## 2168       DS            2006       Action
## 2169      PS3            2013       Action
## 2170      PS3             N/A       Action
## 2171       PS            1996 Role-Playing
## 2172      PS3            2012      Shooter
## 2173      PS2            2000     Strategy
## 2174      PS3            2011       Racing
## 2175      GBA            2003         Misc
## 2176       PS            1999       Sports
## 2177       DS            2008       Action
## 2178     X360            2010      Shooter
## 2179      PS3            2010       Racing
## 2180      Wii            2015         Misc
## 2181      Wii            2014       Action
## 2182      PS3            2010      Shooter
## 2183      PS3            2011       Action
## 2184     X360            2015       Sports
## 2185      PS2            2004      Shooter
## 2186      PS2            2003       Racing
## 2187      Wii            2010       Sports
## 2188       GC            2004     Platform
## 2189      3DS            2011      Shooter
## 2190       PS            1996         Misc
## 2191      PS2            2003       Action
## 2192     X360            2013         Misc
## 2193      PS3            2013       Action
## 2194      PS2            2005      Shooter
## 2195      PS3            2011       Action
## 2196       XB            2005       Sports
## 2197       PS            1999 Role-Playing
## 2198      PSP            2008 Role-Playing
## 2199      PS3            2008     Fighting
## 2200     X360            2009       Sports
## 2201      PS3            2009       Action
## 2202      Wii            2009       Sports
## 2203       PS            1999       Sports
## 2204      PS2            2006       Action
## 2205      PS4            2016    Adventure
## 2206       XB            2003       Action
## 2207      PS2            2003       Sports
## 2208      PS2            2006       Sports
## 2209      PS2            2002       Sports
## 2210      PS3            2013     Fighting
## 2211      PS4            2016       Sports
## 2212       DS            2005   Simulation
## 2213      GBA            2005         Misc
## 2214       XB            2002       Sports
## 2215     XOne            2014 Role-Playing
## 2216      PS3            2008 Role-Playing
## 2217      PS3            2008         Misc
## 2218      GBA            2004       Racing
## 2219     2600            1981       Action
## 2220      3DS            2016       Action
## 2221      N64            1999     Platform
## 2222      NES            1987     Platform
## 2223      NES            1991     Platform
## 2224      Wii            2009         Misc
## 2225      GBA            2003       Action
## 2226     X360            2009       Action
## 2227      PS2            2007       Sports
## 2228       GC            2006       Racing
## 2229       DS            2007   Simulation
## 2230       DS            2010 Role-Playing
## 2231     X360            2009      Shooter
## 2232       DS            2010 Role-Playing
## 2233      PS4            2014       Action
## 2234     X360            2011         Misc
## 2235       PS            1999       Racing
## 2236      PS3            2008      Shooter
## 2237      PS3            2014       Action
## 2238       PC            2012       Action
## 2239       PC            2012      Shooter
## 2240      PS2            2003       Action
## 2241      3DS            2013    Adventure
## 2242      PS2            2001   Simulation
## 2243     X360            2010       Sports
## 2244       PS            2000       Action
## 2245      Wii            2006       Racing
## 2246       DS            2011         Misc
## 2247       DS            2005    Adventure
## 2248      PS4            2015       Sports
## 2249      PS3            2014 Role-Playing
## 2250     X360            2014 Role-Playing
## 2251       PS            1997       Sports
## 2252       PS            1996       Sports
## 2253      NES            1985     Platform
## 2254      N64            1999     Fighting
## 2255      PS3            2012       Sports
## 2256      PSP            2006       Action
## 2257     X360            2010       Action
## 2258      Wii            2011         Misc
## 2259     X360            2008     Fighting
## 2260       GC            2006       Racing
## 2261      PS2            2003       Racing
## 2262       PS            1996     Fighting
## 2263     X360            2006 Role-Playing
## 2264      PS3            2009         Misc
## 2265      3DS            2012       Action
## 2266      Wii            2008       Action
## 2267      PS2            2002       Sports
## 2268      Wii            2009       Sports
## 2269      PS3            2010       Sports
## 2270      Wii            2010       Sports
## 2271      PS2            2002       Sports
## 2272      PS4            2013     Fighting
## 2273     X360            2008     Strategy
## 2274      PS3             N/A       Action
## 2275      PS2            2003       Racing
## 2276      Wii            2010 Role-Playing
## 2277       PC            2008    Adventure
## 2278      N64            1998     Platform
## 2279       PS            2000       Racing
## 2280      PS3            2011       Action
## 2281     XOne            2013       Sports
## 2282       XB             N/A         Misc
## 2283      PS3            2012       Sports
## 2284      Wii            2008       Racing
## 2285      Wii            2007       Sports
## 2286     SNES            1994   Simulation
## 2287       XB            2004         Misc
## 2288      PS3            2009      Shooter
## 2289      PS2            2002       Sports
## 2290     X360            2007 Role-Playing
## 2291      PS4            2016     Fighting
## 2292     XOne            2015       Action
## 2293     SNES            1996       Racing
## 2294      PS2            2004       Sports
## 2295     X360            2009 Role-Playing
## 2296      PS2            2005       Racing
## 2297     X360            2013      Shooter
## 2298     X360            2014      Shooter
## 2299     X360            2012       Action
## 2300      PS3            2011      Shooter
## 2301       PS            1995       Racing
## 2302      PS4            2015       Action
## 2303      PS3            2009       Action
## 2304       PC            2014 Role-Playing
## 2305       PS            1999       Action
## 2306      PS2            2006       Sports
## 2307      PS3            2009       Racing
## 2308      PS4            2013       Sports
## 2309       XB            2003     Platform
## 2310      N64            1998       Sports
## 2311      PS2            2007     Platform
## 2312       XB            2002      Shooter
## 2313       DS            2011       Action
## 2314      3DS            2013       Action
## 2315      PS3            2009         Misc
## 2316     X360            2014       Action
## 2317       XB            2004 Role-Playing
## 2318       XB            2004       Sports
## 2319      PS2            2003       Sports
## 2320      Wii            2012       Action
## 2321      GBA            2005     Platform
## 2322      PS2            2005       Sports
## 2323     X360            2010       Sports
## 2324      GBA            2001     Platform
## 2325      PS3            2011      Shooter
## 2326      PS2            2005       Sports
## 2327     X360            2012       Sports
## 2328      GBA            2004    Adventure
## 2329      GBA            2004     Strategy
## 2330      Wii            2011       Racing
## 2331       DS            2008       Puzzle
## 2332       GB            2001     Strategy
## 2333      PS4            2016       Action
## 2334      PSP            2006      Shooter
## 2335       GC            2003       Action
## 2336     X360            2014       Action
## 2337       PS            1997   Simulation
## 2338      PS2            2001       Sports
## 2339      PS3            2008       Racing
## 2340      Wii            2008       Sports
## 2341      PSP            2009      Shooter
## 2342       DS            2008      Shooter
## 2343      PS3            2011       Sports
## 2344      Wii            2008    Adventure
## 2345       PS            2000       Sports
## 2346      PS3            2012     Platform
## 2347      Wii            2008       Sports
## 2348      PS2            2006         Misc
## 2349      PS3            2009       Action
## 2350     SNES            1995 Role-Playing
## 2351       DS            2008 Role-Playing
## 2352      PS3            2008         Misc
## 2353      PS3            2012       Action
## 2354      Wii            2008         Misc
## 2355       PS            1996     Platform
## 2356      PS3            2007       Action
## 2357       PC            2009      Shooter
## 2358      PS3            2011       Action
## 2359     X360            2010       Racing
## 2360      PS3            2009      Shooter
## 2361     X360            2015    Adventure
## 2362      Wii             N/A         Misc
## 2363      PS2            2005       Action
## 2364      PSP            2011     Fighting
## 2365      PS2            2007         Misc
## 2366       PS            1996      Shooter
## 2367      Wii            2006       Racing
## 2368     XOne            2016       Action
## 2369      3DS            2012       Action
## 2370       DS            2008 Role-Playing
## 2371       DS            2008       Action
## 2372       PC            2008       Action
## 2373     X360            2010         Misc
## 2374     X360            2010     Fighting
## 2375      PS2            2004       Sports
## 2376      PS4            2015      Shooter
## 2377       XB            2003   Simulation
## 2378      Wii            2007       Sports
## 2379       PS            2001      Shooter
## 2380       PS            1995     Platform
## 2381      Wii            2009       Racing
## 2382     SNES            1994       Sports
## 2383       XB            2003      Shooter
## 2384     X360            2012       Action
## 2385     X360            2012 Role-Playing
## 2386      PSP            2004     Strategy
## 2387       PS            1997       Racing
## 2388      3DS            2015       Action
## 2389      PS2            2008 Role-Playing
## 2390      PSP            2009 Role-Playing
## 2391       DS            2008         Misc
## 2392     X360            2011         Misc
## 2393       PS            1996       Sports
## 2394      PS3            2012       Action
## 2395      PS2            2006       Sports
## 2396       PS            1998       Sports
## 2397     X360            2008       Racing
## 2398     X360            2007       Racing
## 2399      PSP            2008         Misc
## 2400     X360            2009      Shooter
## 2401      PS2            2005     Fighting
## 2402       XB            2002      Shooter
## 2403     X360            2015       Action
## 2404      PS2            2002       Sports
## 2405      Wii            2008   Simulation
## 2406     X360            2008      Shooter
## 2407       PS            2000 Role-Playing
## 2408      PS2            2007       Action
## 2409     2600            1982         Misc
## 2410      PS3            2013      Shooter
## 2411      PS3            2008      Shooter
## 2412      PS2            2007         Misc
## 2413       DS            2009         Misc
## 2414      Wii            2009       Action
## 2415      3DS            2015 Role-Playing
## 2416      PS3            2008       Sports
## 2417      PS4            2015         Misc
## 2418      Wii            2009   Simulation
## 2419      PSP            2006       Sports
## 2420      PS2            2002     Fighting
## 2421       PS            2001       Racing
## 2422      N64            1997       Sports
## 2423     X360            2010         Misc
## 2424       PS            1998       Sports
## 2425      PSP            2006       Puzzle
## 2426      PS2            2003       Action
## 2427      Wii            2010       Puzzle
## 2428       PS            1999       Action
## 2429       DS            2007       Sports
## 2430     X360            2010       Sports
## 2431      Wii            2007       Action
## 2432     X360            2007       Sports
## 2433       PS            1996     Fighting
## 2434       XB            2004       Sports
## 2435      NES            1989     Platform
## 2436      PS3            2015       Action
## 2437      PS3            2012 Role-Playing
## 2438       PS            1997       Action
## 2439      PS3            2008     Fighting
## 2440      Wii            2010       Sports
## 2441      PS3            2012     Fighting
## 2442      PS3            2009       Action
## 2443      PS2            2007       Action
## 2444       PS            1995       Sports
## 2445      PS2            2002       Racing
## 2446     WiiU            2013       Sports
## 2447      PS2            2000     Fighting
## 2448       DS            2008     Platform
## 2449      PS3            2010       Sports
## 2450      Wii            2009      Shooter
## 2451      PS3            2010      Shooter
## 2452      PS3            2012       Action
## 2453       GC            2004       Action
## 2454     X360             N/A       Action
## 2455      PS3            2012 Role-Playing
## 2456      PS3            2009       Action
## 2457       GC            2004       Action
## 2458     WiiU            2015 Role-Playing
## 2459      PS3            2009       Sports
## 2460       DS            2008   Simulation
## 2461      PS2            2003       Racing
## 2462      NES            1987 Role-Playing
## 2463      PS3            2009       Sports
## 2464       PS            2001       Sports
## 2465      PS2            2002       Racing
## 2466      PS3            2014       Action
## 2467      PS2            2005 Role-Playing
## 2468      PS2            2004       Sports
## 2469      PS3            2013       Sports
## 2470       DS            2007       Action
## 2471     X360            2012      Shooter
## 2472      GBA            2004    Adventure
## 2473      PS2            2007       Action
## 2474      PSP            2005       Racing
## 2475       PS            1999       Puzzle
## 2476      Wii            2007   Simulation
## 2477      Wii            2008       Sports
## 2478       PS            1999   Simulation
## 2479      PS2            2000       Action
## 2480      PSP             N/A       Sports
## 2481      PS3            2007      Shooter
## 2482     X360            2011      Shooter
## 2483      GBA            2004       Action
## 2484      PS2            2000       Sports
## 2485      PS3            2011       Sports
## 2486       XB            2003      Shooter
## 2487      PS3            2010       Sports
## 2488       GB            2000         Misc
## 2489      Wii            2008     Fighting
## 2490       PS            1998         Misc
## 2491       PS            1997    Adventure
## 2492      PS2            2005     Platform
## 2493      PS2             N/A       Sports
## 2494      Wii            2009       Racing
## 2495      PS3            2012     Fighting
## 2496       PS            1998     Platform
## 2497       PS            1996    Adventure
## 2498     X360            2008     Strategy
## 2499      3DS            2011 Role-Playing
## 2500      PS3            2011       Action
## 2501      Wii            2011      Shooter
## 2502      PS3            2012       Action
## 2503       DS            2009       Action
## 2504       XB            2002      Shooter
## 2505       GC            2001       Sports
## 2506      PS2            2006 Role-Playing
## 2507     X360            2010         Misc
## 2508      Wii            2007   Simulation
## 2509      PSP            2005       Sports
## 2510       XB            2002       Racing
## 2511      N64            1996     Fighting
## 2512      NES            1984       Puzzle
## 2513      Wii            2010         Misc
## 2514       DS            2007       Puzzle
## 2515       XB            2001       Sports
## 2516      Wii            2008         Misc
## 2517     2600            1981       Action
## 2518     X360            2007      Shooter
## 2519      PS2            2002     Platform
## 2520      PS2            2008 Role-Playing
## 2521      PS3            2012       Action
## 2522      PS4            2014       Action
## 2523      PS3             N/A       Action
## 2524       GB            2000 Role-Playing
## 2525      PS2            2000     Fighting
## 2526     X360            2012         Misc
## 2527     SNES            1994    Adventure
## 2528       DS            2008   Simulation
## 2529       PS            2000 Role-Playing
## 2530     SNES            1994       Puzzle
## 2531       PS            2000       Racing
## 2532      PS3            2012       Action
## 2533       GC            2004       Action
## 2534       PS            1999       Sports
## 2535      PSP            2005    Adventure
## 2536       PS            1999 Role-Playing
## 2537     X360             N/A       Sports
## 2538      PSP            2007         Misc
## 2539      PSP            2011 Role-Playing
## 2540      NES            1987     Platform
## 2541      N64            1999       Action
## 2542     X360            2009       Sports
## 2543      PS2            2004      Shooter
## 2544     XOne            2013       Sports
## 2545      PS3            2009       Sports
## 2546     SNES            1994 Role-Playing
## 2547       PS            1998       Puzzle
## 2548      PS3            2010         Misc
## 2549       DS            2008     Strategy
## 2550       PS            1998       Sports
## 2551      PS2            2007 Role-Playing
## 2552      PS2            2005   Simulation
## 2553      PS3            2010     Fighting
## 2554      PS3            2008         Misc
## 2555       PS            2000         Misc
## 2556      PS2            2005       Action
## 2557       DS            2006       Action
## 2558       GC            2003   Simulation
## 2559       PS            1997       Racing
## 2560      PS2            2004      Shooter
## 2561      3DS            2012       Puzzle
## 2562      Wii            2008       Action
## 2563       PS            1999 Role-Playing
## 2564     X360            2009       Racing
## 2565       XB            2004       Action
## 2566      Wii            2009       Sports
## 2567      PSV            2013      Shooter
## 2568      PSP            2009       Sports
## 2569     X360            2009         Misc
## 2570      PSV            2013 Role-Playing
## 2571       PS            2000     Strategy
## 2572       GC            2002       Racing
## 2573      PSP             N/A       Sports
## 2574      Wii            2010         Misc
## 2575      PS2            2002 Role-Playing
## 2576     SNES            1993       Sports
## 2577       DS            2007         Misc
## 2578      PSP            2006   Simulation
## 2579     2600            1981       Action
## 2580      PS2            2006     Fighting
## 2581      PS2            2008         Misc
## 2582      Wii            2009       Action
## 2583       PS            1994       Racing
## 2584      PSP            2010       Sports
## 2585       GC            2003 Role-Playing
## 2586      Wii            2008       Sports
## 2587       PS            1997   Simulation
## 2588      PS3            2013       Action
## 2589       PS            2001       Racing
## 2590      Wii            2010       Sports
## 2591     X360            2012       Action
## 2592     X360            2013       Racing
## 2593     X360            2012       Action
## 2594      NES            1992     Platform
## 2595      N64            1999     Fighting
## 2596      PS2            2007   Simulation
## 2597      PS2            2000   Simulation
## 2598      3DS            2014 Role-Playing
## 2599     X360            2009       Action
## 2600     X360            2012 Role-Playing
## 2601      PS4            2015       Sports
## 2602      PS3            2012       Action
## 2603      N64            1998       Sports
## 2604     XOne            2015         Misc
## 2605     X360            2009         Misc
## 2606      PS2            2007       Sports
## 2607       XB            2003       Sports
## 2608      PSP            2007   Simulation
## 2609     X360            2009 Role-Playing
## 2610      PS3            2011      Shooter
## 2611      PSP            2009     Strategy
## 2612     X360            2014       Racing
## 2613       PC            1992    Adventure
## 2614      PS3            2014       Sports
## 2615     X360            2008 Role-Playing
## 2616     2600            1982      Shooter
## 2617      PS3            2009       Sports
## 2618      GBA            2002     Platform
## 2619       PS            1994      Shooter
## 2620     X360            2006       Action
## 2621      PS2            2007         Misc
## 2622     X360            2010     Fighting
## 2623       DS            2010 Role-Playing
## 2624     X360            2011     Fighting
## 2625       PS            1999     Fighting
## 2626     X360            2013       Action
## 2627      PS3            2015       Sports
## 2628       PS            1997     Strategy
## 2629       DS            2008       Action
## 2630       DS            2007 Role-Playing
## 2631       DS            2007       Action
## 2632      PS3            2008     Strategy
## 2633      PS2            2006       Sports
## 2634     SNES            1993 Role-Playing
## 2635     2600            1983       Puzzle
## 2636       GC            2002      Shooter
## 2637     WiiU            2013       Sports
## 2638      PS3            2011      Shooter
## 2639       PS            1998       Sports
## 2640     X360            2011     Platform
## 2641     2600            1982      Shooter
## 2642     X360            2013      Shooter
## 2643     X360            2008         Misc
## 2644       PS            1996       Racing
## 2645       PS            2000         Misc
## 2646     2600            1981       Action
## 2647      Wii            2009       Action
## 2648      PSP            2008       Racing
## 2649     X360            2005      Shooter
## 2650      PS2            2005     Fighting
## 2651     2600            1980     Fighting
## 2652       PS            1999       Racing
## 2653      Wii            2011         Misc
## 2654     X360            2009       Action
## 2655     X360            2012       Action
## 2656     X360            2011       Sports
## 2657     2600            1983       Action
## 2658      PSP            2006     Strategy
## 2659       DS            2009       Puzzle
## 2660      N64            2001     Platform
## 2661       GB            1999 Role-Playing
## 2662      GBA            2002       Action
## 2663      Wii            2007      Shooter
## 2664      PS2            2003      Shooter
## 2665      PS2            2001     Platform
## 2666      GBA            2005     Platform
## 2667      PS2            2002       Sports
## 2668      PS2            2002 Role-Playing
## 2669       DS            2004       Racing
## 2670      PS3            2009     Fighting
## 2671      PSP            2005       Action
## 2672       DS            2008       Sports
## 2673      PS2            2008     Platform
## 2674      PS2            2003       Sports
## 2675       PS            1996       Racing
## 2676       DS            2010       Puzzle
## 2677     X360            2008     Platform
## 2678      Wii            2011       Sports
## 2679       DS            2008   Simulation
## 2680       XB            2004       Racing
## 2681      PS2            2005       Action
## 2682      PS3            2012    Adventure
## 2683      PS2            2003     Fighting
## 2684       PS            1995     Fighting
## 2685       PS            1998       Sports
## 2686      PSP            2008       Racing
## 2687       DS            2006      Shooter
## 2688     WiiU            2014       Action
## 2689      PSP            2009      Shooter
## 2690     X360            2010       Racing
## 2691      N64            2001       Sports
## 2692      NES            1988 Role-Playing
## 2693      PS2            2002         Misc
## 2694      GBA            2005 Role-Playing
## 2695     XOne            2016      Shooter
## 2696      PS2            2004      Shooter
## 2697      PS2            2010       Sports
## 2698      3DS            2011   Simulation
## 2699       XB            2004     Fighting
## 2700      GBA            2004    Adventure
## 2701      Wii            2009         Misc
## 2702     X360            2010       Action
## 2703      PS2            2002     Fighting
## 2704       PC            2011      Shooter
## 2705      PS3            2011      Shooter
## 2706      Wii            2010       Action
## 2707      PS2            2001     Fighting
## 2708      PS2            2005       Action
## 2709     X360            2010      Shooter
## 2710     X360            2007      Shooter
## 2711      3DS            2015 Role-Playing
## 2712       GB            1991 Role-Playing
## 2713      Wii            2009       Action
## 2714      PS2            2008     Platform
## 2715      3DS            2013       Puzzle
## 2716       DS            2005         Misc
## 2717       PS            2000     Platform
## 2718      3DS            2015         Misc
## 2719      PS4            2016      Shooter
## 2720      PS3            2006       Action
## 2721     XOne            2015       Action
## 2722     X360            2006       Sports
## 2723      Wii            2009       Puzzle
## 2724      Wii            2011       Action
## 2725      PS3            2010         Misc
## 2726      PSP            2008     Fighting
## 2727      3DS            2012       Action
## 2728      PS3            2012     Fighting
## 2729      PS2            2004       Action
## 2730      N64            1997       Racing
## 2731      PS2            2001      Shooter
## 2732       PS            1997     Fighting
## 2733      PS3            2007      Shooter
## 2734      Wii            2009       Sports
## 2735      PS4            2014       Sports
## 2736       XB            2004       Sports
## 2737      PSP            2005       Sports
## 2738      Wii            2009         Misc
## 2739      Wii            2010    Adventure
## 2740      PS2            2001     Fighting
## 2741      PS2            2006       Sports
## 2742     X360            2008       Action
## 2743      PS4            2014 Role-Playing
## 2744      PSP            2005      Shooter
## 2745       DS            2007 Role-Playing
## 2746       DS            2006     Fighting
## 2747      PS2            2001         Misc
## 2748      PS3            2009       Action
## 2749      PS3            2009         Misc
## 2750      PS2            2001       Racing
## 2751       DS            2007 Role-Playing
## 2752      3DS            2015         Misc
## 2753      GBA            2001         Misc
## 2754      PS3            2009       Action
## 2755      PSP            2006     Fighting
## 2756      PSP            2009       Racing
## 2757     X360            2014 Role-Playing
## 2758       DS            2008       Sports
## 2759       PC            2011       Action
## 2760      PS4            2015 Role-Playing
## 2761      PS3            2012       Action
## 2762       XB            2005       Racing
## 2763      PS3            2013       Action
## 2764      PSP            2007      Shooter
## 2765      GBA            2002       Action
## 2766      PS2            2001       Sports
## 2767      PS4            2015       Action
## 2768      PS3            2009      Shooter
## 2769     XOne            2016 Role-Playing
## 2770       PS            1999       Racing
## 2771      PS3            2011       Action
## 2772      PS3            2009       Action
## 2773       XB            2002      Shooter
## 2774      GBA             N/A       Puzzle
## 2775      PS3            2014       Action
## 2776       PC            2011       Action
## 2777     X360            2008 Role-Playing
## 2778      PS3            2013       Sports
## 2779     WiiU            2013       Action
## 2780      Wii            2007         Misc
## 2781      PS3            2015       Sports
## 2782      GBA            2003 Role-Playing
## 2783      PS3            2016       Sports
## 2784      PS3            2009 Role-Playing
## 2785       PC            2014 Role-Playing
## 2786      PS3            2010 Role-Playing
## 2787       DS            2008       Action
## 2788      PS3            2007       Action
## 2789       PS            1997       Sports
## 2790     X360            2012       Action
## 2791     SNES            1993     Fighting
## 2792     X360            2012    Adventure
## 2793      PS3            2007       Sports
## 2794      GBA            2004     Platform
## 2795      Wii            2008   Simulation
## 2796      PS3            2010       Racing
## 2797       GB            1991       Puzzle
## 2798      N64            1998     Fighting
## 2799      Wii            2009     Fighting
## 2800      3DS            2012   Simulation
## 2801       PS            1999     Platform
## 2802     X360            2011 Role-Playing
## 2803       DS            2007         Misc
## 2804       XB            2001     Platform
## 2805      PS3            2012     Fighting
## 2806     2600            1981      Shooter
## 2807      PS3            2011      Shooter
## 2808     X360            2010       Sports
## 2809     X360            2006       Sports
## 2810      Wii            2011         Misc
## 2811       XB            2004     Strategy
## 2812      PS4            2016       Action
## 2813      PS2            2004       Puzzle
## 2814     WiiU            2014         Misc
## 2815      GBA            2003       Action
## 2816      PS4            2015       Action
## 2817      PS3            2012     Fighting
## 2818      PS2            2001       Sports
## 2819       GC            2002      Shooter
## 2820       DS            2007   Simulation
## 2821      GBA            2005       Action
## 2822      PS2            2005       Action
## 2823      Wii            2010         Misc
## 2824       DS            2008   Simulation
## 2825      PS3            2012       Action
## 2826       PS            1998     Strategy
## 2827       DS            2009     Platform
## 2828      PSP            2010       Action
## 2829       PS            1996      Shooter
## 2830       PC            2013     Strategy
## 2831      PS2            2007       Sports
## 2832      PS3            2010 Role-Playing
## 2833       XB            2002      Shooter
## 2834      Wii            2009       Action
## 2835      PS2            2006       Sports
## 2836       DS            2008    Adventure
## 2837       PS            1999       Racing
## 2838     X360            2007       Sports
## 2839      GBA            2005       Action
## 2840      3DS            2014 Role-Playing
## 2841      PS4            2014       Sports
## 2842       PS            2001     Fighting
## 2843       DS            2005     Platform
## 2844      PS2            2001         Misc
## 2845     2600            1982     Platform
## 2846      Wii            2009       Sports
## 2847      PS3            2009       Sports
## 2848     X360            2014      Shooter
## 2849      PS4            2015       Action
## 2850      Wii             N/A       Sports
## 2851      GBA            2002       Puzzle
## 2852       PC            2015 Role-Playing
## 2853     X360            2011       Racing
## 2854      PS2            2003   Simulation
## 2855      PS3            2010       Sports
## 2856     X360            2009       Racing
## 2857      PS3            2010       Racing
## 2858      Wii            2009       Action
## 2859       PS            1998       Action
## 2860       PC            2010      Shooter
## 2861     X360            2011       Racing
## 2862       XB            2002       Action
## 2863       XB            2002       Sports
## 2864     X360            2007       Sports
## 2865       DS            2009    Adventure
## 2866       PC            2012     Strategy
## 2867      PSP            2007       Action
## 2868      PS2            2003     Fighting
## 2869       PC            2007      Shooter
## 2870       PS            2000       Action
## 2871       DS            2007   Simulation
## 2872      PS2            2002       Racing
## 2873       GC            2002     Fighting
## 2874       PS            2000       Racing
## 2875       XB            2005    Adventure
## 2876      PS2            2003       Action
## 2877       GC            2002     Strategy
## 2878       GC            2002     Platform
## 2879      GBA            2004       Action
## 2880      PS2            2004       Action
## 2881      PSP            2007       Sports
## 2882      N64            1997       Action
## 2883      N64            1999       Racing
## 2884      N64            1999     Fighting
## 2885     SNES            1995 Role-Playing
## 2886      PSP            2008       Sports
## 2887       GC            2003       Puzzle
## 2888     X360            2008       Sports
## 2889       PS            1995     Fighting
## 2890      PS4            2016       Action
## 2891      PS3            2007       Action
## 2892       PS            1997         Misc
## 2893       PS            1998      Shooter
## 2894     X360            2008       Sports
## 2895       XB            2005      Shooter
## 2896     X360            2012       Sports
## 2897      Wii            2007 Role-Playing
## 2898     X360            2007 Role-Playing
## 2899       GC            2003       Sports
## 2900      PSP            2005       Action
## 2901     SNES            1994       Puzzle
## 2902     X360            2007       Sports
## 2903       PS            1998     Strategy
## 2904     WiiU            2014       Action
## 2905       XB            2001       Action
## 2906       DS            2009    Adventure
## 2907      PS2            2003      Shooter
## 2908      PS3            2011    Adventure
## 2909       GC            2004       Sports
## 2910      GBA            2001       Action
## 2911      PS2            2001       Racing
## 2912       PS            1997       Sports
## 2913       XB            2005 Role-Playing
## 2914     X360            2008 Role-Playing
## 2915       DS            2010       Sports
## 2916       PS            1998 Role-Playing
## 2917       PC            2013      Shooter
## 2918      PS4            2016       Action
## 2919     X360            2011       Sports
## 2920      GBA            2001     Strategy
## 2921      PS2            2000       Racing
## 2922       PS            2000       Sports
## 2923      PSP            2010     Fighting
## 2924      PS2            2004       Action
## 2925       DS            2009    Adventure
## 2926      PSP            2005     Platform
## 2927      PS2            2000   Simulation
## 2928      PS3            2008       Sports
## 2929      PS2            2002      Shooter
## 2930     X360            2011   Simulation
## 2931     X360            2011       Racing
## 2932      GBA            2004    Adventure
## 2933     SNES            1994 Role-Playing
## 2934      GBA            2005     Platform
## 2935      PS3            2010      Shooter
## 2936     2600            1981       Action
## 2937      PS4            2015    Adventure
## 2938       PS            1997       Racing
## 2939      PSP            2007       Action
## 2940      Wii            2009         Misc
## 2941     WiiU            2012 Role-Playing
## 2942       XB            2005      Shooter
## 2943      PS2            2005       Action
## 2944      PS3            2009      Shooter
## 2945      PS3            2015    Adventure
## 2946      Wii            2012       Action
## 2947      3DS            2014       Action
## 2948     X360            2010       Sports
## 2949      PSP            2006       Racing
## 2950      GBA            2004         Misc
## 2951      NES            1984     Platform
## 2952     SNES            1993       Sports
## 2953       GC            2003     Fighting
## 2954       PS            1998       Sports
## 2955     XOne            2015       Racing
## 2956     XOne            2014      Shooter
## 2957     XOne            2013       Racing
## 2958       DS            2008   Simulation
## 2959       GC            2002       Action
## 2960      PS3            2010       Action
## 2961     X360            2009       Action
## 2962       GC            2003       Action
## 2963       PC            2011   Simulation
## 2964       DS            2012       Action
## 2965      PS3            2011       Sports
## 2966     X360            2007       Action
## 2967      PS2            2004 Role-Playing
## 2968      GBA            2004       Action
## 2969      PS3            2009   Simulation
## 2970     X360             N/A       Racing
## 2971       PS            1997       Action
## 2972       DS            2009   Simulation
## 2973       XB            2003       Sports
## 2974     WiiU            2016         Misc
## 2975     X360            2007       Racing
## 2976     X360            2008 Role-Playing
## 2977       XB            2004       Sports
## 2978       PS            1997     Fighting
## 2979      PS3            2010     Platform
## 2980       GC            2003     Fighting
## 2981      PS4            2014      Shooter
## 2982      PS2            2005       Action
## 2983      PSP            2007       Sports
## 2984       XB            2005       Action
## 2985       PS            1998     Fighting
## 2986       PS            1998 Role-Playing
## 2987      PS3            2008       Action
## 2988       XB            2005       Sports
## 2989       XB            2004     Fighting
## 2990      PS2            2006       Racing
## 2991      PS2            2002 Role-Playing
## 2992     XOne            2014      Shooter
## 2993       DS            2007       Racing
## 2994      PSP            2010       Action
## 2995      PS2            2004         Misc
## 2996      Wii            2012       Action
## 2997       XB            2003      Shooter
## 2998       PC            2011 Role-Playing
## 2999      PS3            2007     Platform
## 3000       PS            1998       Sports
## 3001       PC            2008 Role-Playing
## 3002       PS            1996      Shooter
## 3003       XB            2004     Fighting
## 3004      PS3            2012       Action
## 3005       DS            2006         Misc
## 3006       PS            1998       Action
## 3007     XOne            2014       Action
## 3008      PS2            2002   Simulation
## 3009       XB            2005      Shooter
## 3010      Wii            2008         Misc
## 3011      PS3            2012       Sports
## 3012      PS4            2014       Action
## 3013      PS3            2008       Action
## 3014       PS            1999 Role-Playing
## 3015     X360            2013       Action
## 3016      Wii            2006      Shooter
## 3017      Wii            2008       Sports
## 3018      PS3            2011       Racing
## 3019      PS2            2003     Platform
## 3020      PSP            2005       Sports
## 3021      PS3            2007      Shooter
## 3022     2600            1981       Action
## 3023       DS            2010 Role-Playing
## 3024       DS            2010   Simulation
## 3025      GBA             N/A       Action
## 3026      Wii            2010       Action
## 3027       PC            2008     Strategy
## 3028       DS            2006         Misc
## 3029       PS            1999   Simulation
## 3030       XB            2004       Sports
## 3031       DS            2007 Role-Playing
## 3032      Wii            2009       Action
## 3033      PS3            2006   Simulation
## 3034      PSP            2006     Fighting
## 3035      PS3            2014       Action
## 3036      PS4            2015       Racing
## 3037      PS2            2007       Sports
## 3038      PS3            2007      Shooter
## 3039      Wii            2011         Misc
## 3040      PS2            2003       Sports
## 3041      PS2            2007     Fighting
## 3042       PC            2010   Simulation
## 3043       PS            1998       Sports
## 3044       PS            2001 Role-Playing
## 3045      PS2            2002       Sports
## 3046     XOne            2014 Role-Playing
## 3047       XB            2003       Action
## 3048      PS2            2006     Strategy
## 3049       DS            2011   Simulation
## 3050      PS2            2000       Sports
## 3051       GC            2005     Platform
## 3052     X360            2010       Action
## 3053       DS            2009    Adventure
## 3054     X360            2009       Sports
## 3055       DS            2008         Misc
## 3056      Wii            2012       Puzzle
## 3057      Wii            2008       Puzzle
## 3058      GBA            2003 Role-Playing
## 3059      GBA            2004    Adventure
## 3060      PS2            2004     Fighting
## 3061       PS            1998 Role-Playing
## 3062     X360            2012       Sports
## 3063       PC            2010     Strategy
## 3064      PS4            2014       Action
## 3065      PSP            2009       Sports
## 3066     WiiU            2013     Platform
## 3067       GC            2003   Simulation
## 3068       PC            2013      Shooter
## 3069     2600            1982       Action
## 3070      PSP            2007       Action
## 3071      PS3            2012       Action
## 3072      PS3            2008     Strategy
## 3073      GBA            2002       Action
## 3074      PS2            2004 Role-Playing
## 3075      PSP            2010       Action
## 3076      PS3            2010       Action
## 3077      PS3            2014      Shooter
## 3078      GBA            2004     Platform
## 3079      PS3            2013       Action
## 3080       PS            1998         Misc
## 3081       XB            2005      Shooter
## 3082       DS             N/A       Action
## 3083       DS            2007         Misc
## 3084       PS            1998       Sports
## 3085     XOne            2015       Action
## 3086      PS2            2008       Action
## 3087      PSV            2014 Role-Playing
## 3088       PC            2013         Misc
## 3089       DS            2010    Adventure
## 3090      PS3            2013      Shooter
## 3091      PS3            2008       Sports
## 3092      PS2            2005 Role-Playing
## 3093      Wii            2010       Sports
## 3094       DS            2010         Misc
## 3095       GC            2003       Racing
## 3096      PS2            2005     Platform
## 3097     X360            2008         Misc
## 3098      GBA            2004     Platform
## 3099      PS2            2002       Racing
## 3100      GBA            2005         Misc
## 3101      PS3            2008       Sports
## 3102       PS            1999 Role-Playing
## 3103      PSV            2012     Fighting
## 3104      PSP            2007       Action
## 3105     X360            2008       Sports
## 3106      GBA            2003     Strategy
## 3107       DS            2007     Platform
## 3108       PS            1998      Shooter
## 3109      Wii            2011 Role-Playing
## 3110      PS2            2003 Role-Playing
## 3111      PS2            2007         Misc
## 3112     2600            1987       Action
## 3113      PS2            2005 Role-Playing
## 3114      PS2            2005       Action
## 3115      PSP            2010       Action
## 3116      PS2            2007         Misc
## 3117       PS            2000    Adventure
## 3118      PSP            2007       Racing
## 3119     WiiU            2014       Action
## 3120     X360            2009       Sports
## 3121      Wii            2008       Action
## 3122      PS2            2002     Strategy
## 3123      PSP            2008     Platform
## 3124       PC            2016   Simulation
## 3125       DS            2010   Simulation
## 3126       DS            2008         Misc
## 3127      PS4            2015       Action
## 3128      PSV            2014      Shooter
## 3129      PS2            2009       Action
## 3130      GBA            2004     Platform
## 3131       PC            2013       Action
## 3132      Wii            2008       Racing
## 3133      PS2            2004     Platform
## 3134      PS2            2004     Platform
## 3135     WiiU            2014       Action
## 3136       XB            2003      Shooter
## 3137      PS3            2015       Action
## 3138       DS            2009       Puzzle
## 3139      PS2            2004      Shooter
## 3140     X360            2014       Sports
## 3141       DS            2007   Simulation
## 3142      PSP            2007 Role-Playing
## 3143       XB            2004      Shooter
## 3144      PS2            2003     Platform
## 3145       XB            2005       Sports
## 3146      N64            1999      Shooter
## 3147      N64            1999     Platform
## 3148      N64            1999     Platform
## 3149      GBA            2004         Misc
## 3150      3DS            2011     Platform
## 3151       PC            2013       Sports
## 3152      Wii            2008     Strategy
## 3153       XB            2002      Shooter
## 3154      PS2            2006       Action
## 3155      PS3            2010       Action
## 3156     X360            2007       Racing
## 3157      Wii            2009       Action
## 3158      PS4            2016       Action
## 3159       DS            2009       Action
## 3160      GBA            2004         Misc
## 3161      GBA            2002         Misc
## 3162     XOne            2014       Racing
## 3163     X360            2010     Fighting
## 3164      PS2            2005         Misc
## 3165      N64            2000       Sports
## 3166      N64            1998       Racing
## 3167      PS3            2012       Sports
## 3168      PS3            2012     Fighting
## 3169     XOne            2015      Shooter
## 3170      PS2            2004     Platform
## 3171      PS3            2008      Shooter
## 3172      PS2            2005 Role-Playing
## 3173       PS            1997       Action
## 3174      PS3            2014     Platform
## 3175      PS2            2009         Misc
## 3176     X360            2006       Action
## 3177      Wii            2010         Misc
## 3178      3DS            2016 Role-Playing
## 3179      Wii            2010         Misc
## 3180       PC            2011       Action
## 3181       XB            2001       Sports
## 3182      PS3            2007       Sports
## 3183       PS            1999     Strategy
## 3184       XB            2002       Sports
## 3185      3DS            2012         Misc
## 3186     X360            2009       Action
## 3187       PC            2014      Shooter
## 3188      PS2             N/A Role-Playing
## 3189      PS2            2005       Racing
## 3190      GBA            2004   Simulation
## 3191      N64            1998     Platform
## 3192     SNES            1991     Platform
## 3193      PSP            2008       Action
## 3194      PS3            2010 Role-Playing
## 3195      PS2            2003     Fighting
## 3196     X360            2007       Racing
## 3197      PS3            2009      Shooter
## 3198     X360            2013      Shooter
## 3199       PC            2011   Simulation
## 3200      PS2            2002     Platform
## 3201      PS4            2014         Misc
## 3202     2600            1982       Action
## 3203      PS3            2007       Racing
## 3204      PS2            2007 Role-Playing
## 3205      PS2            2001       Sports
## 3206      3DS            2012       Action
## 3207       PS            1997 Role-Playing
## 3208     X360            2008       Action
## 3209      PS2            2006       Action
## 3210      PSP            2009 Role-Playing
## 3211      PSP            2007       Action
## 3212       PS            2000       Sports
## 3213       PC            2013      Shooter
## 3214       PS            2000     Platform
## 3215      PS4            2015       Sports
## 3216       GC            2002         Misc
## 3217     X360            2009      Shooter
## 3218      Wii            2007       Sports
## 3219      PS3            2006       Sports
## 3220     X360            2009       Action
## 3221     X360            2012     Strategy
## 3222     SNES            1993     Strategy
## 3223      SAT            1995      Shooter
## 3224       XB             N/A       Action
## 3225       XB            2005       Sports
## 3226       PS            1996     Fighting
## 3227      PS2            2002 Role-Playing
## 3228       PS            1997       Sports
## 3229      Wii            2009         Misc
## 3230       GC            2006       Sports
## 3231      3DS            2015       Action
## 3232     2600            1982      Shooter
## 3233       XB            2003       Sports
## 3234      PS3             N/A       Racing
## 3235      PS2            2004     Platform
## 3236      PS3            2011         Misc
## 3237      3DS            2011       Action
## 3238      Wii            2007       Racing
## 3239       DS            2009     Platform
## 3240      PS4            2014       Action
## 3241       GC            2003       Action
## 3242      GBA            2004   Simulation
## 3243      N64            1999       Racing
## 3244      PS3            2009         Misc
## 3245       PS            2000     Platform
## 3246      PS2            2004       Sports
## 3247     2600            1982       Action
## 3248      Wii            2010      Shooter
## 3249       PS            1999       Sports
## 3250      PS2            2004       Racing
## 3251     XOne            2016       Action
## 3252       DS            2008    Adventure
## 3253       GB            1995       Puzzle
## 3254       GC            2003         Misc
## 3255      SAT            1996     Fighting
## 3256     SNES            1996 Role-Playing
## 3257     X360            2010       Action
## 3258      PS3            2011       Action
## 3259       PC            1998       Action
## 3260      Wii            2010         Misc
## 3261      3DS            2012    Adventure
## 3262       DS            2011 Role-Playing
## 3263      N64            1998       Sports
## 3264       PS            2001     Strategy
## 3265     X360            2011       Sports
## 3266       DS            2009     Strategy
## 3267     X360            2008     Platform
## 3268      PS3            2010         Misc
## 3269      PS3            2006       Racing
## 3270       DS            2009       Action
## 3271      PS3            2010 Role-Playing
## 3272      PS3            2014       Sports
## 3273       DS            2007    Adventure
## 3274      PS3            2008       Sports
## 3275      Wii            2007       Action
## 3276      PS2            2008         Misc
## 3277       XB            2002       Sports
## 3278      PS2            2006       Action
## 3279      PS3            2009      Shooter
## 3280      3DS            2011   Simulation
## 3281      3DS            2012       Action
## 3282      Wii            2011         Misc
## 3283      GBA            2005         Misc
## 3284       DS            2008 Role-Playing
## 3285      PS4            2014      Shooter
## 3286      Wii            2009      Shooter
## 3287      PS2            2002      Shooter
## 3288      GBA            2004     Platform
## 3289      PS3            2011       Action
## 3290       DS             N/A     Strategy
## 3291      PSP            2009     Platform
## 3292      GBA            2004         Misc
## 3293      PS2            2003      Shooter
## 3294      PSP            2009     Fighting
## 3295      PS3            2010      Shooter
## 3296       DS            2007         Misc
## 3297      PSV            2013    Adventure
## 3298       PS            1998     Platform
## 3299       XB            2005      Shooter
## 3300       PS            1997      Shooter
## 3301     X360            2009       Sports
## 3302      PS3            2014      Shooter
## 3303     X360            2008       Sports
## 3304      PS3            2009 Role-Playing
## 3305     X360            2010       Sports
## 3306     X360            2009       Sports
## 3307      GBA            2005 Role-Playing
## 3308      PS3            2011     Fighting
## 3309      GBA            2002       Sports
## 3310     XOne            2014       Action
## 3311       DS            2008   Simulation
## 3312      GBA            2005       Action
## 3313       PS            1999       Action
## 3314      GBA            2004       Action
## 3315       GC            2001       Sports
## 3316      GBA            2001       Action
## 3317      N64            1999       Sports
## 3318      GBA            2002         Misc
## 3319       DS            2009       Racing
## 3320      PS2            2003     Fighting
## 3321      Wii            2010         Misc
## 3322      Wii            2010       Sports
## 3323      GBA            2003       Sports
## 3324      PS4            2015 Role-Playing
## 3325      GBA            2004       Racing
## 3326      Wii            2009   Simulation
## 3327      PS2            2005     Platform
## 3328       GC            2001       Racing
## 3329      PS3            2013      Shooter
## 3330      PS2            2003     Fighting
## 3331      PS3            2011      Shooter
## 3332       XB            2005     Fighting
## 3333      PSP            2010 Role-Playing
## 3334      PS3            2013       Action
## 3335     X360            2014         Misc
## 3336     XOne            2014       Sports
## 3337      PS2            2007       Sports
## 3338      PS3            2013       Action
## 3339       PS            1995 Role-Playing
## 3340     WiiU            2013       Action
## 3341      PS2            2009     Platform
## 3342     X360            2009      Shooter
## 3343     X360            2010     Fighting
## 3344      PS2            2001       Racing
## 3345      PS2            2006       Action
## 3346      SAT            1997       Puzzle
## 3347      PS2            2001      Shooter
## 3348      N64            1997       Sports
## 3349      N64            2000       Racing
## 3350      PS2            2001       Racing
## 3351     X360            2010       Racing
## 3352       DS            2007       Action
## 3353      Wii             N/A       Action
## 3354     X360            2007       Action
## 3355       PS            2002     Fighting
## 3356       PS            1998   Simulation
## 3357      Wii            2009 Role-Playing
## 3358      Wii            2008         Misc
## 3359      3DS            2013     Platform
## 3360       PS            1998    Adventure
## 3361       DS            2008   Simulation
## 3362      Wii            2008       Action
## 3363      Wii            2009     Strategy
## 3364      PS4            2014       Action
## 3365     SNES            1995     Strategy
## 3366      PS4            2016       Sports
## 3367     WiiU            2013         Misc
## 3368      Wii            2008     Platform
## 3369       DS            2010         Misc
## 3370      PSP            2009       Action
## 3371      PS4            2014       Sports
## 3372       PC            2011     Strategy
## 3373      PS2            2007       Sports
## 3374      PS2            2003     Strategy
## 3375     X360            2005       Racing
## 3376      PS3            2014 Role-Playing
## 3377       DS            2007   Simulation
## 3378      Wii            2010         Misc
## 3379      PS2            2004       Racing
## 3380       DS            2008   Simulation
## 3381      PS2            2005     Strategy
## 3382      PSV            2014       Sports
## 3383       PS            1997       Sports
## 3384     X360            2008         Misc
## 3385      PS3            2009       Sports
## 3386       PS            1998       Sports
## 3387       PS            2001         Misc
## 3388       GC            2002      Shooter
## 3389       PC            2008       Action
## 3390       PS            2000       Sports
## 3391       PS            1998       Sports
## 3392      PS2            2008         Misc
## 3393      PS3            2010       Sports
## 3394      PS3            2012       Action
## 3395     2600            1981       Puzzle
## 3396      PS2            2002       Sports
## 3397       XB            2004       Sports
## 3398       GC            2002     Platform
## 3399     2600            1981       Action
## 3400     X360            2008       Sports
## 3401       DS            2005       Puzzle
## 3402     XOne            2015       Sports
## 3403      N64            1997       Racing
## 3404      N64            1999       Sports
## 3405       PC            2011       Action
## 3406       DS            2007         Misc
## 3407       XB            2003       Sports
## 3408      PS2            2004 Role-Playing
## 3409      PS2            2010       Action
## 3410      Wii            2010         Misc
## 3411     X360            2010       Racing
## 3412       PS            1999       Action
## 3413      PS3            2010      Shooter
## 3414     X360             N/A       Sports
## 3415       DS            2004       Racing
## 3416      PS2            2004     Platform
## 3417      PS3            2014       Action
## 3418      GBA            2003   Simulation
## 3419      PS2            2003       Sports
## 3420      PSP            2008       Action
## 3421     X360            2008       Action
## 3422     SNES            1994       Sports
## 3423       DS            2009         Misc
## 3424      Wii            2008       Action
## 3425      PS3            2010     Fighting
## 3426      PS2            2003       Action
## 3427       PC            2011      Shooter
## 3428      PS2            2008       Action
## 3429      PSP            2007 Role-Playing
## 3430      PSP            2009       Action
## 3431     X360            2012     Fighting
## 3432       PS            1995   Simulation
## 3433       PS            1997 Role-Playing
## 3434     2600            1982       Puzzle
## 3435      PS2            2005 Role-Playing
## 3436     X360            2008       Action
## 3437      Wii            2008       Action
## 3438     X360            2010         Misc
## 3439      PS2            2004 Role-Playing
## 3440       DS            2010      Shooter
## 3441      Wii            2008         Misc
## 3442      PS3            2008       Sports
## 3443     X360            2012       Racing
## 3444      PS3            2011       Sports
## 3445      Wii            2010         Misc
## 3446     X360            2010      Shooter
## 3447     X360            2012    Adventure
## 3448       PS            2000       Sports
## 3449     WiiU            2013     Platform
## 3450      PS2            2003       Action
## 3451      Wii            2009         Misc
## 3452     X360            2009       Action
## 3453      PS3            2011    Adventure
## 3454      3DS            2013 Role-Playing
## 3455     X360            2006       Sports
## 3456      N64            1998       Sports
## 3457      N64            1997       Sports
## 3458      N64            1998       Sports
## 3459      PS3            2011       Sports
## 3460      PS2             N/A       Racing
## 3461      PS2            2000      Shooter
## 3462       PS            2000 Role-Playing
## 3463       PS            1998 Role-Playing
## 3464       XB            2005       Action
## 3465      PS2            2004 Role-Playing
## 3466       PS            1998     Platform
## 3467      GBA            2004    Adventure
## 3468       DS            2009       Sports
## 3469      PS3            2013     Fighting
## 3470      PS2            2002      Shooter
## 3471       PS            1998       Racing
## 3472     SNES            1992 Role-Playing
## 3473       DS            2009 Role-Playing
## 3474      PS3            2013     Platform
## 3475     SNES            1996     Strategy
## 3476      PSV            2012       Sports
## 3477       PS            2000       Action
## 3478       GC            2002       Sports
## 3479      Wii            2008       Action
## 3480      PS2            2006       Action
## 3481      PS2            2005       Sports
## 3482       PS            1999 Role-Playing
## 3483      N64            1999       Sports
## 3484      Wii            2008       Sports
## 3485      PS3            2014       Sports
## 3486     X360            2012       Sports
## 3487       XB             N/A       Sports
## 3488      PS2            2009       Sports
## 3489      Wii            2011       Action
## 3490       PS            1994   Simulation
## 3491       XB            2005      Shooter
## 3492      PS2            2008       Puzzle
## 3493      GBA            2002       Sports
## 3494      PSP            2005       Racing
## 3495      PS2            2005 Role-Playing
## 3496     X360            2013      Shooter
## 3497       PS            2000     Strategy
## 3498     X360            2007      Shooter
## 3499      GBA            2004       Action
## 3500      PS3            2012     Strategy
## 3501      Wii            2007   Simulation
## 3502       PS            1995 Role-Playing
## 3503      PS2            2008       Action
## 3504      3DS            2011       Action
## 3505      Wii            2010       Sports
## 3506       PC            2009   Simulation
## 3507       GC            2005       Sports
## 3508       DS            2007       Action
## 3509     XOne            2016      Shooter
## 3510      PS3            2009     Fighting
## 3511      Wii            2007       Action
## 3512     X360            2008       Action
## 3513      PS2            2004     Fighting
## 3514      NES            1986       Action
## 3515      N64            1997       Sports
## 3516      PS3            2009       Sports
## 3517      PS3            2010       Sports
## 3518      PS3            2010         Misc
## 3519       XB            2001      Shooter
## 3520      PS2            2005       Action
## 3521      Wii            2009       Sports
## 3522       DS            2008   Simulation
## 3523     XOne            2014       Sports
## 3524      PS2            2002         Misc
## 3525      PS2            2006       Sports
## 3526       XB            2002       Racing
## 3527     SNES            1992       Puzzle
## 3528     X360            2013      Shooter
## 3529      PS3            2011 Role-Playing
## 3530       DS            2008       Action
## 3531       XB            2003     Platform
## 3532      PS3            2012      Shooter
## 3533      PS2            2002     Strategy
## 3534     X360            2007     Platform
## 3535      PSP            2011       Action
## 3536      Wii            2009      Shooter
## 3537      Wii            2009         Misc
## 3538     WiiU            2015         Misc
## 3539     X360            2011       Action
## 3540       XB            2002       Racing
## 3541      PS2            2004       Action
## 3542      PS3            2008       Action
## 3543       PS            2000       Action
## 3544      PS2            2003      Shooter
## 3545      PSP            2007       Action
## 3546       DS            2007    Adventure
## 3547      3DS            2012 Role-Playing
## 3548      PS3            2009 Role-Playing
## 3549      Wii            2009       Action
## 3550       PS            2000 Role-Playing
## 3551      PS3            2015 Role-Playing
## 3552       GC            2003       Action
## 3553      PS2            2007 Role-Playing
## 3554       DS            2008   Simulation
## 3555      GBA            2003       Action
## 3556      GBA            2004       Puzzle
## 3557      3DS            2015 Role-Playing
## 3558       PC            2014      Shooter
## 3559      PS2            2006       Sports
## 3560      GBA            2003       Action
## 3561      PS2            2001       Sports
## 3562      Wii            2008     Platform
## 3563      GBA            2004       Puzzle
## 3564       XB            2003   Simulation
## 3565      PS2            2007       Sports
## 3566       PS            2001     Platform
## 3567     X360            2011      Shooter
## 3568      PS2            2006         Misc
## 3569     X360            2008       Action
## 3570      GBA            2004         Misc
## 3571      PS2            2004       Sports
## 3572     X360            2009         Misc
## 3573      PS2            2001     Fighting
## 3574       PS            1999       Action
## 3575      PS2            2007   Simulation
## 3576       XB            2005      Shooter
## 3577      PS3            2009       Action
## 3578      PS2            2001       Sports
## 3579      GBA            2002       Sports
## 3580     XOne            2015    Adventure
## 3581      Wii            2009       Sports
## 3582       GC            2005       Racing
## 3583       PS            2000       Racing
## 3584      Wii            2008    Adventure
## 3585       XB            2003     Fighting
## 3586      N64            1999       Action
## 3587     SNES            1993     Platform
## 3588      PS2            2007       Action
## 3589      PS2            2003 Role-Playing
## 3590      PSP            2006       Sports
## 3591       GB            2001 Role-Playing
## 3592      PS2            2005       Action
## 3593       DS            2006   Simulation
## 3594      3DS            2016       Action
## 3595     X360            2007       Sports
## 3596      PS2            2003         Misc
## 3597      GBA            2002         Misc
## 3598     X360            2009      Shooter
## 3599      GBA            2003     Strategy
## 3600       XB            2002     Platform
## 3601      PS2            2003       Sports
## 3602     SNES            1994     Fighting
## 3603       XB            2005       Sports
## 3604      Wii            2010       Puzzle
## 3605       DS            2008         Misc
## 3606      PSV            2012       Action
## 3607     XOne            2016       Action
## 3608      PSP            2005       Puzzle
## 3609     X360            2007       Action
## 3610      PS3            2014       Action
## 3611      PS2            2001      Shooter
## 3612      Wii            2014       Sports
## 3613      PSP            2011 Role-Playing
## 3614     X360            2008      Shooter
## 3615      PS2            2001       Racing
## 3616       XB            2006       Sports
## 3617       PS            1998 Role-Playing
## 3618       DS            2010   Simulation
## 3619      Wii            2007       Action
## 3620       PS            1999       Sports
## 3621      PS3            2011       Action
## 3622      Wii            2008     Platform
## 3623      PS2            2001       Action
## 3624      PS2            2005       Action
## 3625       XB            2006       Action
## 3626      PS3            2010       Action
## 3627      SAT            1994       Racing
## 3628       XB            2002     Fighting
## 3629       PS            1996 Role-Playing
## 3630       DS            2005     Fighting
## 3631     XOne            2015         Misc
## 3632     2600            1982       Sports
## 3633       PS            2001      Shooter
## 3634       PS            1999       Action
## 3635      SAT            1996    Adventure
## 3636       DS            2006   Simulation
## 3637      PS2            2001       Action
## 3638      PS2            2001    Adventure
## 3639      PS3            2008     Platform
## 3640      PS2            2004       Sports
## 3641      Wii            2006       Sports
## 3642      PSV            2011       Sports
## 3643       XB            2002       Sports
## 3644      GBA            2002     Platform
## 3645       PS            2000     Fighting
## 3646      PS4            2015       Action
## 3647       PS            1996      Shooter
## 3648      PS3            2015       Action
## 3649      PS3            2007       Sports
## 3650      Wii            2011     Platform
## 3651      PS4            2014       Action
## 3652       PS            1999     Strategy
## 3653       PC            2014       Action
## 3654     X360            2011       Racing
## 3655      SAT            1997     Strategy
## 3656       XB            2004     Platform
## 3657       DS            2007   Simulation
## 3658       PC            2010       Action
## 3659      PS2            2002       Sports
## 3660      PSP            2008     Platform
## 3661      GBA            2001       Action
## 3662      SAT            1998     Strategy
## 3663      GBA            2003     Platform
## 3664      Wii            2008       Action
## 3665     X360            2009         Misc
## 3666       PS            1995     Fighting
## 3667       PC            2015      Shooter
## 3668       XB            2002      Shooter
## 3669      Wii            2010         Misc
## 3670      PS2            2005       Racing
## 3671       DS            2007     Platform
## 3672      PS2            2003         Misc
## 3673       PS            1996         Misc
## 3674       DS            2008       Sports
## 3675       XB            2004      Shooter
## 3676       DS            2008       Puzzle
## 3677       DS            2008   Simulation
## 3678       DS            2008   Simulation
## 3679       DS            2010   Simulation
## 3680      PS3            2013     Platform
## 3681      PS2            2008       Action
## 3682      PS2            2008         Misc
## 3683      PS3            2012      Shooter
## 3684       XB            2004     Platform
## 3685      PS3            2013       Sports
## 3686      PS3            2013       Racing
## 3687       XB            2006       Sports
## 3688      PS2            2000       Sports
## 3689      PS3            2009     Fighting
## 3690      Wii            2008         Misc
## 3691     X360            2007       Sports
## 3692       GB            1999 Role-Playing
## 3693       XB            2003   Simulation
## 3694      PS2            2005       Racing
## 3695      PS2            2003     Strategy
## 3696      GBA            2003     Platform
## 3697      PSV            2012     Platform
## 3698       DS            2010 Role-Playing
## 3699      PS3            2007      Shooter
## 3700     X360            2010       Action
## 3701      PS2            2004       Racing
## 3702      PSP            2006     Fighting
## 3703      PS3            2012       Sports
## 3704      PS3            2010       Action
## 3705       XB             N/A     Fighting
## 3706     2600            1982       Action
## 3707      N64            1998       Sports
## 3708      N64            1999       Action
## 3709      PS3            2011     Fighting
## 3710      Wii            2008       Racing
## 3711      Wii            2010       Sports
## 3712      Wii            2010       Sports
## 3713      PS3            2009       Sports
## 3714     X360            2010      Shooter
## 3715       PS            1998         Misc
## 3716       GC            2005       Action
## 3717      PS2            2002 Role-Playing
## 3718       DS            2007    Adventure
## 3719      3DS            2014 Role-Playing
## 3720       PS            1999         Misc
## 3721      GBA            2004         Misc
## 3722       GC            2001       Sports
## 3723       XB            2004      Shooter
## 3724      PS2            2004       Sports
## 3725      PS2            2003       Sports
## 3726     X360            2011     Fighting
## 3727     X360            2009 Role-Playing
## 3728     X360            2011 Role-Playing
## 3729      PS2            2006     Platform
## 3730       PS            2001       Sports
## 3731       DS            2011       Action
## 3732       DS            2009         Misc
## 3733       DS            2008         Misc
## 3734     X360            2013       Sports
## 3735     2600            1982     Platform
## 3736       DS            2009   Simulation
## 3737      PS2            2003     Platform
## 3738      PS2            2003     Fighting
## 3739      Wii            2010       Action
## 3740       GC             N/A       Sports
## 3741      PS2            2005       Action
## 3742      PS3            2010      Shooter
## 3743      Wii            2008       Sports
## 3744      SAT            1998    Adventure
## 3745      PS2            2001      Shooter
## 3746      3DS            2011 Role-Playing
## 3747       PS            1996    Adventure
## 3748      PS2            2005       Sports
## 3749     WiiU            2015       Action
## 3750      PSP            2010 Role-Playing
## 3751      PS2            2004         Misc
## 3752      Wii            2011         Misc
## 3753      Wii            2010     Fighting
## 3754       DS            2006 Role-Playing
## 3755      PS2            2003       Action
## 3756      GBA            2004         Misc
## 3757      PS2            2004       Sports
## 3758       PS            2000       Racing
## 3759      PSP            2010 Role-Playing
## 3760      PS2            2004      Shooter
## 3761      PS3            2013 Role-Playing
## 3762       XB            2004         Misc
## 3763      PS2            2003       Sports
## 3764       PS            1999     Platform
## 3765      PS2            2008       Racing
## 3766       XB            2004       Sports
## 3767      Wii            2007       Action
## 3768     XOne            2014         Misc
## 3769       PS            1996         Misc
## 3770     XOne            2014       Action
## 3771     SNES            1993       Sports
## 3772       PC            2016      Shooter
## 3773     SNES            1994     Strategy
## 3774      Wii            2010       Racing
## 3775     SNES            1993       Sports
## 3776       XB            2005       Action
## 3777       XB            2005       Racing
## 3778       XB            2005      Shooter
## 3779      PS2            2004     Platform
## 3780       XB            2002       Action
## 3781      PS2            2005       Sports
## 3782       DS            2008 Role-Playing
## 3783      Wii            2006       Racing
## 3784       DS            2006    Adventure
## 3785      N64            2000       Action
## 3786       DS            2008 Role-Playing
## 3787       DS            2008       Puzzle
## 3788       GC            2004 Role-Playing
## 3789      3DS            2016       Action
## 3790       DS            2009       Action
## 3791       PS            1997     Strategy
## 3792       PC            2015     Strategy
## 3793       DS            2009       Puzzle
## 3794      PSP            2010       Racing
## 3795     X360            2015       Action
## 3796       DS            2009     Fighting
## 3797       DS            2007         Misc
## 3798      PS2            2001       Action
## 3799      PSP            2007      Shooter
## 3800      Wii            2008       Action
## 3801      PS3            2009      Shooter
## 3802       DS            2010       Action
## 3803       GC            2002       Action
## 3804       PC            2011       Action
## 3805      PS2            2005       Racing
## 3806      PS2            2005       Action
## 3807     SNES            1994       Sports
## 3808       DS            2006      Shooter
## 3809     X360            2014 Role-Playing
## 3810      N64            1996       Sports
## 3811      N64            1999       Racing
## 3812       PS            2000         Misc
## 3813      PS3            2011      Shooter
## 3814      PS2            2003      Shooter
## 3815      GBA            2005       Sports
## 3816       DC            1999   Simulation
## 3817       PS            1999    Adventure
## 3818      PS3            2013 Role-Playing
## 3819      PS3            2011         Misc
## 3820      PS2            2006 Role-Playing
## 3821      PS3            2007       Racing
## 3822       DS            2010   Simulation
## 3823     X360            2009      Shooter
## 3824       DS            2006 Role-Playing
## 3825      Wii            2006       Racing
## 3826     X360            2010       Sports
## 3827      PS2            2007       Action
## 3828       PS            2001 Role-Playing
## 3829      PSP            2009       Racing
## 3830       PS            2001      Shooter
## 3831      PS2            2002       Action
## 3832      Wii            2008 Role-Playing
## 3833     X360            2007       Sports
## 3834       DS            2008       Action
## 3835      PS2            2005       Puzzle
## 3836     X360            2011         Misc
## 3837       XB            2002       Sports
## 3838      Wii            2008   Simulation
## 3839      PS3            2006       Sports
## 3840       PS            2000     Fighting
## 3841     WiiU            2015       Action
## 3842      NES            1993     Platform
## 3843      PS3            2008       Sports
## 3844      PSP            2011       Sports
## 3845       PS            1999       Action
## 3846      PS4            2015       Action
## 3847      PS3            2010         Misc
## 3848       PS            1998     Fighting
## 3849      PS4            2014 Role-Playing
## 3850      PS2            2000       Sports
## 3851      PS2            2003       Sports
## 3852      PS2            2006       Action
## 3853      PS2            2003      Shooter
## 3854      PSP            2007       Action
## 3855       XB            2005      Shooter
## 3856      GBA            2005    Adventure
## 3857      PSP            2006     Fighting
## 3858      PS2            2005       Action
## 3859     WiiU            2015     Platform
## 3860       PS            1999     Strategy
## 3861       DS            2006         Misc
## 3862      PS2            2005       Sports
## 3863       DS            2013     Platform
## 3864      PS3            2008 Role-Playing
## 3865      GBA            2002       Sports
## 3866      PS3            2008       Action
## 3867       PC            2006   Simulation
## 3868       DS            2008 Role-Playing
## 3869      GBA            2004       Action
## 3870       PS            1999      Shooter
## 3871       XB            2002       Sports
## 3872      PS3            2011       Racing
## 3873      Wii            2008       Action
## 3874       DS            2009   Simulation
## 3875       PS            2001       Sports
## 3876      PS2            2002         Misc
## 3877      PSV            2013       Action
## 3878      PS2            2002       Action
## 3879      PSP            2010 Role-Playing
## 3880     WiiU            2012       Racing
## 3881      PS3            2008       Action
## 3882       DS            2009         Misc
## 3883     X360            2012       Action
## 3884     2600             N/A       Sports
## 3885      PS2            2001         Misc
## 3886       DS            2008 Role-Playing
## 3887       PS            1996       Sports
## 3888      PS2            2002       Racing
## 3889      PS3            2007       Action
## 3890       GC            2003       Sports
## 3891      PS2            2003       Sports
## 3892      PS2            2000 Role-Playing
## 3893      PSV            2013 Role-Playing
## 3894       PS            1997       Sports
## 3895      PS3            2011 Role-Playing
## 3896       DS            2008         Misc
## 3897      PSP            2006       Sports
## 3898     X360            2009   Simulation
## 3899       DS            2009       Puzzle
## 3900      PS3            2013      Shooter
## 3901     X360            2010       Sports
## 3902      Wii            2010    Adventure
## 3903      PS3            2007       Action
## 3904      GBA            2005         Misc
## 3905      NES            1985     Platform
## 3906      N64            1999         Misc
## 3907      N64            1999       Sports
## 3908       XB            2003       Sports
## 3909       DS            2008       Action
## 3910     XOne            2014      Shooter
## 3911       PS            1996     Strategy
## 3912      Wii            2009       Sports
## 3913      GBA            2002     Platform
## 3914      Wii            2009     Fighting
## 3915      PS2            2006   Simulation
## 3916       PC            2009 Role-Playing
## 3917      PSP            2004       Action
## 3918      PS2            2006       Sports
## 3919      PSP            2009     Fighting
## 3920       PC            2012       Action
## 3921     X360            2009     Fighting
## 3922     X360            2013     Fighting
## 3923       DS            2007         Misc
## 3924       XB            2004         Misc
## 3925      PS2            2007       Sports
## 3926      PS3            2015       Sports
## 3927       WS            2000 Role-Playing
## 3928      GBA            2004     Fighting
## 3929       XB            2004       Sports
## 3930      PS2            2004       Action
## 3931     2600            1988      Shooter
## 3932      PS2            2005         Misc
## 3933      Wii            2007         Misc
## 3934      PS2            2002         Misc
## 3935     X360            2012       Sports
## 3936       PS            1997       Sports
## 3937     X360            2009       Action
## 3938      GBA            2004       Action
## 3939      PS2            2006       Racing
## 3940      PS2            2003     Platform
## 3941       DS            2009       Action
## 3942     2600            1983       Action
## 3943     X360            2008       Sports
## 3944      Wii            2008       Action
## 3945     X360            2006     Fighting
## 3946       XB            2003       Racing
## 3947      PS3            2011 Role-Playing
## 3948      PS3            2006       Sports
## 3949      Wii            2007       Action
## 3950       GC            2006    Adventure
## 3951       PS            2001         Misc
## 3952      PS2            2001       Action
## 3953      Wii            2010         Misc
## 3954       DS            2007   Simulation
## 3955      PS2            2006       Action
## 3956      PS2            2008         Misc
## 3957     2600            1982      Shooter
## 3958      PS3            2008       Action
## 3959      PS2            2008     Platform
## 3960      PS2            2002         Misc
## 3961       DS            2007       Puzzle
## 3962     X360            2011       Action
## 3963      PSP            2007 Role-Playing
## 3964      PSP            2007       Racing
## 3965      PSP            2009       Action
## 3966      PSV            2012      Shooter
## 3967      PS3            2010     Strategy
## 3968      3DS            2012         Misc
## 3969      PS3            2010       Action
## 3970     X360            2011      Shooter
## 3971      N64            2000       Action
## 3972       DS            2009    Adventure
## 3973      PS2            2002   Simulation
## 3974      GBA            2001 Role-Playing
## 3975      PS3            2010      Shooter
## 3976      PS2            2004     Strategy
## 3977      Wii            2008       Sports
## 3978       PS            1995       Sports
## 3979       XB            2004     Fighting
## 3980       PS            1997 Role-Playing
## 3981     X360            2012       Sports
## 3982       DS            2010    Adventure
## 3983     X360            2007   Simulation
## 3984     X360            2006       Racing
## 3985      PS2            2002      Shooter
## 3986      PS2            2004       Action
## 3987      Wii            2012       Sports
## 3988      PS2            2010       Sports
## 3989      PS2            2004 Role-Playing
## 3990     X360            2007       Sports
## 3991       GC            2004       Sports
## 3992      PS2            2003       Racing
## 3993     SNES            1996       Sports
## 3994      PS2            2005       Action
## 3995      GBA            2001     Platform
## 3996      PS2            2008     Strategy
## 3997       PS            1996 Role-Playing
## 3998     X360             N/A      Shooter
## 3999      PS2            2007       Action
## 4000      PS2            2005       Action
## 4001      PS2            2002      Shooter
## 4002     2600            1982       Sports
## 4003      PS2            2007     Platform
## 4004     2600            1981       Action
## 4005     2600            1982       Action
## 4006     X360            2011    Adventure
## 4007      Wii            2006       Sports
## 4008       DS            2004       Action
## 4009      3DS            2011       Racing
## 4010       DS            2009       Puzzle
## 4011      PS3            2008       Action
## 4012      Wii            2007       Racing
## 4013      GBA            2004       Sports
## 4014      3DS            2011       Action
## 4015       PC            2008   Simulation
## 4016      Wii            2006     Platform
## 4017      PS3            2015       Action
## 4018     X360            2012       Racing
## 4019      Wii            2010       Action
## 4020     2600            1980       Sports
## 4021     X360            2006       Sports
## 4022      Wii            2010   Simulation
## 4023      PS3            2011     Fighting
## 4024      PS2            2005       Action
## 4025       DS            2005     Fighting
## 4026      3DS            2013     Platform
## 4027       GC            2002     Fighting
## 4028      Wii            2007         Misc
## 4029       DS            2008         Misc
## 4030      GBA            2003       Action
## 4031       XB            2004      Shooter
## 4032      Wii            2007     Strategy
## 4033       GC            2003   Simulation
## 4034      PS4            2016      Shooter
## 4035      PS2            2005 Role-Playing
## 4036     X360            2011       Action
## 4037      PS2            2006      Shooter
## 4038     SNES            1993       Puzzle
## 4039       XB            2006       Action
## 4040      3DS            2011       Action
## 4041      N64            1997       Sports
## 4042      Wii            2009       Racing
## 4043       DS            2009      Shooter
## 4044      3DS            2012       Action
## 4045     X360            2010      Shooter
## 4046      SAT            1997       Sports
## 4047       DS            2006     Platform
## 4048      PS2            2004       Sports
## 4049      PS2            2009       Racing
## 4050     X360            2014       Action
## 4051      PS2            2003       Sports
## 4052      3DS            2014         Misc
## 4053      PS2            2003         Misc
## 4054       PS            2001     Fighting
## 4055      PS3            2012       Racing
## 4056       PC            2010      Shooter
## 4057      3DS            2011       Racing
## 4058      PS2            2009      Shooter
## 4059       GC            2001       Racing
## 4060     X360            2008     Fighting
## 4061      PS2            2003       Racing
## 4062       XB            2002       Action
## 4063       PS            1999       Action
## 4064      PS2            2001         Misc
## 4065       PC            2008      Shooter
## 4066      PS2            2005 Role-Playing
## 4067     SNES            1995   Simulation
## 4068       DS            2008       Sports
## 4069      3DS            2011       Action
## 4070      3DS            2015 Role-Playing
## 4071     X360            2008    Adventure
## 4072      PSP            2008       Sports
## 4073      3DS            2015       Puzzle
## 4074      PS2            2007       Action
## 4075      GBA            2005       Action
## 4076      GBA            2004       Racing
## 4077       PS            1999 Role-Playing
## 4078       PC            2008       Action
## 4079       XB            2004       Sports
## 4080     2600            1983      Shooter
## 4081     SNES            1991    Adventure
## 4082     XOne            2015       Action
## 4083      PSP            2009         Misc
## 4084      Wii            2008    Adventure
## 4085      PS2            2003         Misc
## 4086      PS2            2006       Action
## 4087     WiiU            2015       Action
## 4088       PS            1999     Fighting
## 4089     X360            2008         Misc
## 4090     X360            2011       Racing
## 4091     X360            2007         Misc
## 4092      PS3            2011       Racing
## 4093     X360            2008      Shooter
## 4094       PS            1998     Fighting
## 4095     X360            2006       Sports
## 4096     XOne            2016      Shooter
## 4097      3DS            2014       Sports
## 4098      PS2            2003   Simulation
## 4099      N64            1999   Simulation
## 4100      N64            1998       Sports
## 4101      PS2            2008       Sports
## 4102      PS2            2007   Simulation
## 4103       DS            2007       Action
## 4104      PS3            2015     Fighting
## 4105       DS            2008         Misc
## 4106     X360            2012       Action
## 4107      Wii            2009      Shooter
## 4108       PS            1999       Racing
## 4109      PS3            2009       Action
## 4110     X360            2013       Action
## 4111      PS3            2009 Role-Playing
## 4112      PS2            2000     Strategy
## 4113      Wii            2009       Sports
## 4114       DS            2010       Action
## 4115       PS            1999       Sports
## 4116     X360            2013       Sports
## 4117       DS            2007       Puzzle
## 4118     XOne            2015       Sports
## 4119      GBA            2001       Racing
## 4120       XB            2005       Sports
## 4121      Wii            2011         Misc
## 4122     X360            2006       Sports
## 4123      PS2            2009       Action
## 4124     2600            1981       Racing
## 4125       DS            2008    Adventure
## 4126      PS2            2002       Racing
## 4127       DS            2006 Role-Playing
## 4128      PS3             N/A     Platform
## 4129      PS2            2000       Puzzle
## 4130     2600            1989       Action
## 4131       PS            1996      Shooter
## 4132      N64            1998       Sports
## 4133     2600             N/A     Fighting
## 4134      PS2            2002     Fighting
## 4135       DS            2008       Action
## 4136      PS2            2006       Action
## 4137      PS3            2007       Action
## 4138     X360            2012      Shooter
## 4139       DS            2010    Adventure
## 4140      Wii            2007     Platform
## 4141     SNES            1995       Puzzle
## 4142     XOne            2015         Misc
## 4143       PS            2000       Action
## 4144     X360            2010      Shooter
## 4145       PS            1995       Action
## 4146     X360            2012     Fighting
## 4147      PS3            2008      Shooter
## 4148      PS2            2001       Action
## 4149       PC            2014       Action
## 4150      Wii            2008       Racing
## 4151       DS            2009       Racing
## 4152      Wii            2011 Role-Playing
## 4153     X360            2008      Shooter
## 4154     WiiU            2012       Action
## 4155      PS2            2000     Fighting
## 4156      GBA            2002     Platform
## 4157      PS2            2006 Role-Playing
## 4158      Wii            2008         Misc
## 4159      PS2            2002       Racing
## 4160      Wii            2009       Racing
## 4161       DS            2010       Action
## 4162      PS3            2009      Shooter
## 4163      Wii            2007   Simulation
## 4164      PS2            2005       Racing
## 4165       PS            1999         Misc
## 4166      N64            1997      Shooter
## 4167      N64            1998     Platform
## 4168      N64            1997       Racing
## 4169      N64            1998 Role-Playing
## 4170     X360            2008     Platform
## 4171     X360            2008   Simulation
## 4172      PS3            2012       Action
## 4173     2600            1987       Action
## 4174      PS2            2006       Sports
## 4175     X360            2010 Role-Playing
## 4176       XB            2006       Racing
## 4177     X360            2007 Role-Playing
## 4178      PSP            2007       Racing
## 4179       PS            1999         Misc
## 4180       PC            2009     Strategy
## 4181       DS            2006       Action
## 4182      Wii            2008       Racing
## 4183     SNES            1995         Misc
## 4184      Wii            2010       Action
## 4185      PS2            2005       Sports
## 4186      PS2            2009       Racing
## 4187      PS2            2003       Racing
## 4188      Wii            2009      Shooter
## 4189      GBA            2006    Adventure
## 4190      Wii            2009       Action
## 4191      Wii            2009       Sports
## 4192       PC            2011       Sports
## 4193       DS            2007       Action
## 4194      PS2            2005         Misc
## 4195      3DS            2012 Role-Playing
## 4196       PS            1996       Sports
## 4197       DS            2009 Role-Playing
## 4198     X360            2011       Action
## 4199     XOne            2014       Sports
## 4200      GBA            2005       Action
## 4201       DS            2007     Platform
## 4202     X360            2005     Fighting
## 4203      PS2            2004     Fighting
## 4204       GC            2005         Misc
## 4205       GC            2004       Action
## 4206      Wii             N/A       Sports
## 4207      3DS            2012       Action
## 4208      PS2            2002       Sports
## 4209      PS2            2007    Adventure
## 4210      PS4            2015       Action
## 4211      GBA            2001      Shooter
## 4212      PSP            2010       Sports
## 4213      GBA            2004       Puzzle
## 4214      PS3            2011 Role-Playing
## 4215       PC            2014   Simulation
## 4216       XB            2005      Shooter
## 4217      Wii            2008   Simulation
## 4218       DS            2007       Sports
## 4219      Wii            2008   Simulation
## 4220      GBA            2002         Misc
## 4221     2600             N/A       Action
## 4222      Wii            2007       Action
## 4223       PC            2010   Simulation
## 4224       PS            1999       Sports
## 4225      GBA            2005     Platform
## 4226      PS2            2002       Action
## 4227      PSP            2007      Shooter
## 4228     SNES            1992       Sports
## 4229      PS2            2001     Strategy
## 4230     SNES            1993     Platform
## 4231      GBA            2002     Platform
## 4232      GBA            2004     Platform
## 4233      PS2            2007         Misc
## 4234      PS2            2005      Shooter
## 4235     X360            2014       Action
## 4236      PS2            2005     Fighting
## 4237      GBA            2001     Platform
## 4238      PS3            2011       Racing
## 4239       PS            1999       Racing
## 4240       PS            1996       Sports
## 4241     XOne            2014       Action
## 4242      PS4            2014    Adventure
## 4243     X360            2006       Sports
## 4244      PS2            2005      Shooter
## 4245       DS            2008     Platform
## 4246     2600            1983       Action
## 4247      PS2            2002       Action
## 4248      Wii            2010       Racing
## 4249      PS2            2003         Misc
## 4250      GBA            2001       Action
## 4251      GBA            2003       Racing
## 4252       DS            2007       Puzzle
## 4253      PS3            2014       Action
## 4254      PS3            2012       Action
## 4255       DS            2008       Action
## 4256      Wii            2010     Fighting
## 4257      PS2            2009     Platform
## 4258      PS2            2002         Misc
## 4259     WiiU            2015       Action
## 4260       PC            2011   Simulation
## 4261       PS            2000       Racing
## 4262       PS            1999     Fighting
## 4263      PS2            2005      Shooter
## 4264      Wii            2009     Platform
## 4265     SNES            1994      Shooter
## 4266      PS2            2002 Role-Playing
## 4267      GBA            2003 Role-Playing
## 4268      PS3            2007       Racing
## 4269      Wii            2009       Puzzle
## 4270       XB            2003       Sports
## 4271      PSP            2006      Shooter
## 4272       PS            1995   Simulation
## 4273     X360            2007       Action
## 4274      PSP            2006       Action
## 4275     XOne            2013         Misc
## 4276      PS3            2009 Role-Playing
## 4277      GBA            2005     Platform
## 4278       DS            2008     Platform
## 4279       PS            1999      Shooter
## 4280      3DS            2014       Sports
## 4281     SNES            1996       Sports
## 4282      PS2            2005       Sports
## 4283       GC            2003       Action
## 4284     X360            2014       Action
## 4285       XB            2004       Racing
## 4286     SNES            1995       Sports
## 4287     X360            2009       Racing
## 4288     X360            2014       Sports
## 4289       GC            2002 Role-Playing
## 4290      PSV            2012       Action
## 4291      PS2            2002       Action
## 4292       DS            2006     Fighting
## 4293       DS            2008    Adventure
## 4294      Wii            2011         Misc
## 4295       XB             N/A      Shooter
## 4296      PS2            2006       Sports
## 4297     2600            1985       Puzzle
## 4298       DS            2011       Action
## 4299       PS            1998       Sports
## 4300      Wii            2008       Action
## 4301      PS2            2005      Shooter
## 4302       PS            1998       Sports
## 4303      PS2            2004       Sports
## 4304       DS            2007       Puzzle
## 4305      Wii            2008         Misc
## 4306      Wii            2007    Adventure
## 4307      3DS            2014       Action
## 4308      Wii            2009    Adventure
## 4309       XB            2003      Shooter
## 4310     2600            1981   Simulation
## 4311      PSP            2009       Action
## 4312       DS            2008         Misc
## 4313     X360            2008     Strategy
## 4314     X360            2008      Shooter
## 4315     X360            2011       Sports
## 4316       DS            2005   Simulation
## 4317       PS            1998       Action
## 4318      PSP            2006       Racing
## 4319      PSP            2007       Racing
## 4320      GBA            2004         Misc
## 4321      PSV            2013 Role-Playing
## 4322      Wii            2010       Action
## 4323      Wii            2007       Action
## 4324      PS2            2001       Sports
## 4325      PS3            2011      Shooter
## 4326      PS2            2003       Action
## 4327     SNES            1993     Fighting
## 4328      N64            1998       Action
## 4329      N64            2000       Puzzle
## 4330      Wii            2009       Sports
## 4331       DS            2010       Puzzle
## 4332     WiiU            2014       Action
## 4333      GBA            2001     Fighting
## 4334      PS2            2006 Role-Playing
## 4335       PS            1995 Role-Playing
## 4336      GBA            2004       Racing
## 4337       DS            2007         Misc
## 4338     2600             N/A       Action
## 4339       PS            1995       Action
## 4340     X360            2008     Fighting
## 4341      Wii            2007       Action
## 4342       DS            2007       Action
## 4343     X360            2007       Racing
## 4344      PS2            2009         Misc
## 4345       PS            1999 Role-Playing
## 4346      PS2            2008         Misc
## 4347      PS2            2004       Action
## 4348       DS            2009         Misc
## 4349       PS            1994       Sports
## 4350       XB            2005     Fighting
## 4351       GC            2004       Sports
## 4352      PS3            2011      Shooter
## 4353     2600            1987      Shooter
## 4354       GC            2004     Fighting
## 4355     X360            2009       Sports
## 4356       XB            2003       Racing
## 4357     X360            2010       Action
## 4358       PS            2000       Racing
## 4359      PS4            2016       Sports
## 4360      PS2            2002       Racing
## 4361       PS            1996 Role-Playing
## 4362      3DS            2011     Fighting
## 4363      PS3            2015       Action
## 4364      Wii            2010         Misc
## 4365       PC            2014      Shooter
## 4366      PS3            2013       Action
## 4367     2600            1981       Action
## 4368      PS2            2004       Action
## 4369       PC            2014       Action
## 4370      GBA            2004       Sports
## 4371      Wii            2008       Sports
## 4372     X360            2011      Shooter
## 4373      Wii            2010         Misc
## 4374     X360             N/A       Action
## 4375      PS2            2004         Misc
## 4376      PS3            2011      Shooter
## 4377       DS            2009   Simulation
## 4378      Wii            2009         Misc
## 4379      PS2            2006       Sports
## 4380     X360            2010       Sports
## 4381      PS2            2005         Misc
## 4382       XB            2005       Sports
## 4383      N64            1999       Sports
## 4384      PS2            2004       Action
## 4385      PS2            2005         Misc
## 4386      PS2            2002    Adventure
## 4387      PS2            2004       Action
## 4388     WiiU            2015       Sports
## 4389      PS3            2011       Sports
## 4390       XB            2005 Role-Playing
## 4391     X360            2012     Fighting
## 4392      PS3            2014      Shooter
## 4393      PS4            2014       Action
## 4394      PSP            2007     Strategy
## 4395       DS            2009       Action
## 4396      PS2            2003       Action
## 4397       XB            2006       Action
## 4398       DS            2008     Strategy
## 4399       PS            1996       Sports
## 4400       XB            2002       Sports
## 4401      PS2            2005      Shooter
## 4402       XB            2005       Action
## 4403      GBA            2003     Platform
## 4404       PS            1997      Shooter
## 4405      PS3            2007       Sports
## 4406       PS            1999       Racing
## 4407     XOne            2014       Action
## 4408       XB            2006       Action
## 4409     X360            2008       Action
## 4410      Wii            2007   Simulation
## 4411       DS            2005       Action
## 4412      PS2            2005      Shooter
## 4413       PS            2000       Puzzle
## 4414       PS            1996 Role-Playing
## 4415     SNES            1996       Puzzle
## 4416     X360            2014 Role-Playing
## 4417      Wii            2008         Misc
## 4418      Wii            2009   Simulation
## 4419      NES            1991       Puzzle
## 4420      N64            1997      Shooter
## 4421       DS            2011       Action
## 4422       DS            2004   Simulation
## 4423       GC            2005         Misc
## 4424      PS2            2007     Strategy
## 4425      Wii            2009       Action
## 4426       PS            2001       Action
## 4427     X360            2012       Action
## 4428      PSP            2010      Shooter
## 4429       XB            2004       Racing
## 4430       DS            2007   Simulation
## 4431      PS2            2002       Sports
## 4432       PS            2000       Sports
## 4433       GC            2004     Fighting
## 4434      Wii            2011       Sports
## 4435       GC            2003     Platform
## 4436     X360            2013       Action
## 4437      GBA            2003       Action
## 4438     2600             N/A       Puzzle
## 4439      PSV            2012       Action
## 4440      PS3            2008     Platform
## 4441      PS2            2003         Misc
## 4442      Wii            2009       Action
## 4443      Wii            2009       Action
## 4444       GC            2002      Shooter
## 4445      GBA            2003       Action
## 4446     X360             N/A       Action
## 4447       GC            2002    Adventure
## 4448      Wii            2009         Misc
## 4449      GBA            2004       Action
## 4450      PS2            2005     Fighting
## 4451     X360            2007      Shooter
## 4452      Wii            2007     Strategy
## 4453      Wii            2009         Misc
## 4454      PS2            2009         Misc
## 4455     X360            2011      Shooter
## 4456      SAT            1996    Adventure
## 4457      PS2            2005       Action
## 4458      PS3            2010       Action
## 4459       DS            2010   Simulation
## 4460      PS2            2002       Sports
## 4461      PS2            2007       Action
## 4462      PS3            2008 Role-Playing
## 4463      PS3            2009         Misc
## 4464      Wii            2009         Misc
## 4465       XB            2002   Simulation
## 4466      Wii            2010       Sports
## 4467      GBA            2004    Adventure
## 4468      Wii            2007     Platform
## 4469      PS2            2003       Action
## 4470     X360            2011       Racing
## 4471      PSP            2009     Strategy
## 4472      PS3            2012       Action
## 4473       DS            2009         Misc
## 4474      GBA            2004       Racing
## 4475      N64            2001       Sports
## 4476      PS2            2008       Action
## 4477       DS            2006       Puzzle
## 4478       PS            2001      Shooter
## 4479       XB            2001       Sports
## 4480      GBA            2005   Simulation
## 4481      3DS            2011       Puzzle
## 4482     XOne            2015      Shooter
## 4483      PS4            2014       Action
## 4484      PS2            2005       Action
## 4485      SAT            1996     Platform
## 4486      PS3            2009       Action
## 4487       XB            2003       Sports
## 4488      PS2            2003       Action
## 4489      3DS            2016       Action
## 4490      PS3            2011         Misc
## 4491      PS3            2014     Fighting
## 4492      PS3            2010       Action
## 4493       PS            2001       Sports
## 4494     X360            2013       Action
## 4495     XOne            2014       Action
## 4496      PS3            2014       Sports
## 4497     X360            2012       Action
## 4498      PS3            2010 Role-Playing
## 4499      PS2            2000      Shooter
## 4500     2600            1981       Action
## 4501      PS2            2004 Role-Playing
## 4502      GBA            2002     Platform
## 4503      GBA            2003     Platform
## 4504       DS            2007         Misc
## 4505     SNES            1994   Simulation
## 4506      PS3            2013      Shooter
## 4507     X360            2015       Sports
## 4508      PSP            2007     Fighting
## 4509      GBA            2004         Misc
## 4510      PS3            2012       Action
## 4511      PS2            2009       Action
## 4512      PS2            2003       Action
## 4513      N64            1997     Platform
## 4514      N64            1998       Racing
## 4515      PS2            2004       Sports
## 4516       DS            2009         Misc
## 4517      PS2            2003 Role-Playing
## 4518       DS            2010    Adventure
## 4519       PS            1996       Sports
## 4520      3DS            2013 Role-Playing
## 4521      PS3            2012         Misc
## 4522      PS2            2001   Simulation
## 4523      PS2            2008         Misc
## 4524       DS            2009       Puzzle
## 4525      PS2            2006 Role-Playing
## 4526       DS            2005     Platform
## 4527       PC            2012      Shooter
## 4528       DS            2010       Action
## 4529      PSP            2006 Role-Playing
## 4530       DS            2008   Simulation
## 4531      PS3            2010 Role-Playing
## 4532      PS4            2015       Action
## 4533       DS            2010       Sports
## 4534       DS            2007   Simulation
## 4535     X360            2013     Platform
## 4536       GC            2002       Sports
## 4537      GBA            2002       Sports
## 4538       XB            2003         Misc
## 4539     X360            2008         Misc
## 4540      Wii            2009       Sports
## 4541       PC            2006   Simulation
## 4542      PS2            2009       Action
## 4543       PS            1997       Sports
## 4544      PS2            2005         Misc
## 4545      Wii            2008     Platform
## 4546       DS            2006       Action
## 4547      PSP            2011     Strategy
## 4548      SAT            1997 Role-Playing
## 4549       GC            2002       Sports
## 4550      PS3            2007       Action
## 4551     X360            2014       Sports
## 4552      PS2            2007     Platform
## 4553      PS3            2010 Role-Playing
## 4554      GBA            2001 Role-Playing
## 4555      PSP            2006       Racing
## 4556      PS2            2006      Shooter
## 4557      PS2            2005       Sports
## 4558       GC            2003      Shooter
## 4559       XB            2003   Simulation
## 4560      PS2            2003    Adventure
## 4561       PS            1999    Adventure
## 4562     SNES            1991       Action
## 4563       PS            1998       Action
## 4564       DS            2011         Misc
## 4565       GC            2005       Sports
## 4566     X360            2007     Strategy
## 4567      Wii            2009      Shooter
## 4568      PSP            2008     Platform
## 4569       DS            2009       Action
## 4570      GBA            2004     Platform
## 4571       PS            1997   Simulation
## 4572      PS2            2003       Sports
## 4573       PS            2003       Sports
## 4574     X360            2015       Action
## 4575      PSP            2009       Action
## 4576       PS            2001       Racing
## 4577      PSV            2013       Action
## 4578      PS3            2012   Simulation
## 4579      SAT            1997 Role-Playing
## 4580      Wii            2010       Sports
## 4581       XB            2004       Sports
## 4582      GBA            2005         Misc
## 4583      PS2            2003       Racing
## 4584      PS2            2007       Action
## 4585      PS2            2002       Action
## 4586      PS4            2014       Racing
## 4587      PS2            2004       Racing
## 4588      Wii            2009       Racing
## 4589      GBA            2004       Action
## 4590     X360            2009         Misc
## 4591      GBA            2004     Platform
## 4592       PS            1998       Racing
## 4593      PSV            2011       Sports
## 4594       PS            1999 Role-Playing
## 4595      Wii            2011         Misc
## 4596       DS            2009       Action
## 4597      PSP            2008     Fighting
## 4598       XB            2002       Racing
## 4599      PS2            2004       Sports
## 4600      Wii            2007   Simulation
## 4601      PS2            2003       Action
## 4602      PSP            2007       Action
## 4603      N64            2001       Puzzle
## 4604      N64            1999       Sports
## 4605      N64            2000      Shooter
## 4606      N64            1998       Racing
## 4607      N64            2000       Sports
## 4608       GC            2004      Shooter
## 4609      PSP            2005       Sports
## 4610      PS2            2008       Sports
## 4611       DS            2006   Simulation
## 4612       XB            2004   Simulation
## 4613       GC            2004     Platform
## 4614       DS            2008     Platform
## 4615     SNES            1995       Sports
## 4616      GBA            2004         Misc
## 4617      Wii            2010       Action
## 4618      PS2            2008       Sports
## 4619      3DS            2014   Simulation
## 4620       DS            2010         Misc
## 4621       GC            2005       Action
## 4622      PS2            2007     Strategy
## 4623      PS3            2013       Action
## 4624      PSP            2010       Action
## 4625       PS            2001       Action
## 4626      PS2            2002      Shooter
## 4627       GC            2005       Puzzle
## 4628      PS2            2005       Action
## 4629      Wii            2012       Sports
## 4630       PS            1998       Sports
## 4631      PS3            2009         Misc
## 4632      GBA            2001     Platform
## 4633       XB            2006      Shooter
## 4634       XB            2006       Action
## 4635     X360            2012      Shooter
## 4636      Wii             N/A       Sports
## 4637     WiiU            2016 Role-Playing
## 4638       DS            2008 Role-Playing
## 4639     X360            2010      Shooter
## 4640       DS            2007         Misc
## 4641      PS3            2010       Action
## 4642       XB            2004 Role-Playing
## 4643      PS2            2007       Action
## 4644       PS            2000    Adventure
## 4645       PS            1997     Fighting
## 4646     X360            2006   Simulation
## 4647      Wii            2007    Adventure
## 4648      PS2            2004         Misc
## 4649       PC             N/A Role-Playing
## 4650      3DS            2013       Action
## 4651      PS2            2004       Action
## 4652      SAT            1995     Fighting
## 4653       XB            2001   Simulation
## 4654     WiiU            2015         Misc
## 4655      PS2            2003       Sports
## 4656      PS2            2003   Simulation
## 4657      PS4            2013         Misc
## 4658      PS2            2003         Misc
## 4659      GBA            2001    Adventure
## 4660      PS2            2003       Sports
## 4661     X360            2005       Action
## 4662      GBA            2001    Adventure
## 4663       DS            2010         Misc
## 4664       PC            1998       Action
## 4665      PS2            2010       Sports
## 4666       DC            1999       Racing
## 4667       PS            1998      Shooter
## 4668      PS2            2007       Action
## 4669     XOne            2016       Sports
## 4670      PS2            2010       Sports
## 4671       PS            2000         Misc
## 4672       XB            2005      Shooter
## 4673      PSP            2009     Fighting
## 4674     X360            2007      Shooter
## 4675       PS            2000       Sports
## 4676       PS            1999       Action
## 4677      PS4            2016   Simulation
## 4678       PS            2000       Sports
## 4679      PSP            2007     Platform
## 4680      SAT            1995       Action
## 4681      PS3            2010       Action
## 4682      PS3            2015      Shooter
## 4683      PS2            2002     Platform
## 4684       DS            2007         Misc
## 4685      PS2            2006       Action
## 4686      PS3            2013       Action
## 4687     XOne            2015       Action
## 4688      PSP            2010       Sports
## 4689      PSP            2007       Action
## 4690       DS            2009     Fighting
## 4691       DS            2009      Shooter
## 4692     XOne            2014       Sports
## 4693      SAT            1996    Adventure
## 4694       PC            2016      Shooter
## 4695      PSP            2007     Strategy
## 4696      PS2            2005    Adventure
## 4697      Wii            2009    Adventure
## 4698      PS3            2010         Misc
## 4699       PS            1996       Racing
## 4700      PSV            2013       Sports
## 4701      Wii            2009         Misc
## 4702      PSP            2009       Racing
## 4703      PS2            2002    Adventure
## 4704      PS3            2014       Racing
## 4705       PS            1997     Strategy
## 4706      PS3            2007       Racing
## 4707     WiiU            2012      Shooter
## 4708      N64            1999 Role-Playing
## 4709      N64            1999       Action
## 4710      NES            1985       Puzzle
## 4711       PC            2007      Shooter
## 4712      PS2            2002       Action
## 4713      PS2            2007 Role-Playing
## 4714       PS            1997   Simulation
## 4715       DS            2011       Action
## 4716       PS            1999   Simulation
## 4717      Wii            2007      Shooter
## 4718     X360            2011       Sports
## 4719       DS            2009    Adventure
## 4720      PS2            2009         Misc
## 4721      PS2            2001   Simulation
## 4722      PS2            2006         Misc
## 4723      PSV            2015 Role-Playing
## 4724       GC            2002     Fighting
## 4725      PS2            2010       Action
## 4726      PSP            2010         Misc
## 4727       PS            1996         Misc
## 4728      Wii            2007     Platform
## 4729       PS            1998       Sports
## 4730       DS            2008   Simulation
## 4731      PS2            2008       Sports
## 4732      GBA            2001         Misc
## 4733      PSP            2009       Action
## 4734      PSP            2010         Misc
## 4735      PS2            2009 Role-Playing
## 4736      Wii            2008       Racing
## 4737       PC            2014      Shooter
## 4738     SNES            1995       Puzzle
## 4739      PS3            2008       Sports
## 4740      PS2            2005     Platform
## 4741     SNES            1994       Sports
## 4742      PS2            2001     Platform
## 4743      PS3            2011     Fighting
## 4744     X360            2010         Misc
## 4745       DS            2010       Action
## 4746      PSV            2012      Shooter
## 4747     X360            2006      Shooter
## 4748     XOne            2014         Misc
## 4749       PS            2000     Fighting
## 4750      PS2            2005       Action
## 4751     X360            2011   Simulation
## 4752      PS3            2010     Fighting
## 4753       PC            2011      Shooter
## 4754     WiiU            2013 Role-Playing
## 4755      PS2            2002       Action
## 4756      PS3            2009       Puzzle
## 4757       PS            2003         Misc
## 4758       PS            2001       Sports
## 4759     2600            1983    Adventure
## 4760     X360            2008       Action
## 4761     X360            2010       Action
## 4762     2600            1981       Action
## 4763       GC            2003     Platform
## 4764      Wii            2009         Misc
## 4765     X360            2011         Misc
## 4766     X360            2007       Action
## 4767      Wii            2010       Sports
## 4768       DS            2009 Role-Playing
## 4769      PS4            2016 Role-Playing
## 4770      PSP            2009       Action
## 4771      PS4            2015 Role-Playing
## 4772      PS3            2013    Adventure
## 4773       GB            1997 Role-Playing
## 4774      PS2            2009       Sports
## 4775      PS2            2002         Misc
## 4776      PS2             N/A       Sports
## 4777      PS3            2008     Fighting
## 4778      Wii            2009         Misc
## 4779     2600            1982       Action
## 4780      PS2            2005 Role-Playing
## 4781       GC            2003       Sports
## 4782      PS2            2008       Action
## 4783      PS3            2009       Sports
## 4784     X360            2007     Strategy
## 4785      PS2            2008       Action
## 4786      GBA            2005       Action
## 4787      PS4            2016    Adventure
## 4788       PS            1997     Strategy
## 4789       GC            2005     Strategy
## 4790       PS            1999       Sports
## 4791       GC            2004       Action
## 4792     SNES            1994     Fighting
## 4793     X360            2012       Action
## 4794     WiiU            2013       Action
## 4795      Wii            2011         Misc
## 4796      SAT            1995     Fighting
## 4797       DS            2009       Action
## 4798       PS            1999       Sports
## 4799      PS3            2012       Action
## 4800      PS2            2008     Platform
## 4801      PSP            2011         Misc
## 4802      N64            1999       Sports
## 4803      N64            1997     Fighting
## 4804      N64            1999       Racing
## 4805      N64            1997       Racing
## 4806      PS2            2001       Racing
## 4807      PSP            2009      Shooter
## 4808      PS3            2008     Platform
## 4809      PS2            2004         Misc
## 4810       PC            2013       Sports
## 4811       PS            1999     Platform
## 4812      PS2            2007       Racing
## 4813      PS2            2005       Sports
## 4814      PSV            2012 Role-Playing
## 4815      PS2            2007       Sports
## 4816     X360            2011      Shooter
## 4817      GBA            2001       Action
## 4818      Wii            2006 Role-Playing
## 4819      3DS             N/A       Action
## 4820       DS            2009         Misc
## 4821       XB            2005       Racing
## 4822       PC            2012       Action
## 4823       GC            2006       Action
## 4824       DS            2009   Simulation
## 4825       GC            2004   Simulation
## 4826       PS            1999       Racing
## 4827      PS3            2008         Misc
## 4828      GBA            2006 Role-Playing
## 4829      GBA            2004       Action
## 4830      Wii            2009       Racing
## 4831       PS            1999         Misc
## 4832     X360            2010       Sports
## 4833      PSP            2005     Fighting
## 4834       PC            2010       Action
## 4835       DS            2009       Action
## 4836     SNES            1995 Role-Playing
## 4837      PS3            2015       Sports
## 4838       GC            2002      Shooter
## 4839       XB            2001       Sports
## 4840      PS3            2008       Sports
## 4841      Wii            2009   Simulation
## 4842      Wii            2008       Sports
## 4843       PS            2000    Adventure
## 4844      PS2            2003     Platform
## 4845      PS3            2007       Action
## 4846       DS            2012         Misc
## 4847       DS            2009       Action
## 4848       PS            1996     Strategy
## 4849      PS2             N/A   Simulation
## 4850      PS2            2004     Strategy
## 4851       GC            2004      Shooter
## 4852       DS            2007 Role-Playing
## 4853     SNES            1995 Role-Playing
## 4854      Wii            2008       Racing
## 4855       DS            2006     Platform
## 4856      PS2            2005       Racing
## 4857      PS2            2004     Fighting
## 4858     X360            2015       Action
## 4859     X360            2007       Action
## 4860       DS            2009    Adventure
## 4861      PS2            2007       Action
## 4862       XB            2005       Action
## 4863      Wii            2008   Simulation
## 4864      PS2            2007       Racing
## 4865       DS            2009       Action
## 4866      N64            1998       Sports
## 4867      3DS            2012       Action
## 4868      PSP            2011 Role-Playing
## 4869      Wii            2010       Action
## 4870       PS            2000       Racing
## 4871       DS            2009       Action
## 4872       PS            1997     Fighting
## 4873     2600            1982       Racing
## 4874      PS2            2002      Shooter
## 4875     X360            2009     Fighting
## 4876      Wii            2011       Sports
## 4877      GBA            2003       Action
## 4878      PS3            2012   Simulation
## 4879      PS2            2008       Sports
## 4880      PS4            2015       Action
## 4881       PC            2010 Role-Playing
## 4882      PS3            2010       Action
## 4883       XB            2002      Shooter
## 4884      3DS            2012 Role-Playing
## 4885      PS3            2010       Sports
## 4886      GBA            2002 Role-Playing
## 4887      PS4            2015       Action
## 4888     XOne            2016 Role-Playing
## 4889     X360            2010       Sports
## 4890       DS            2008         Misc
## 4891      PSP            2008       Sports
## 4892       DS            2008       Sports
## 4893     2600            1981       Action
## 4894      3DS            2011       Sports
## 4895       PS            1998       Sports
## 4896       DS            2008         Misc
## 4897       GC            2004         Misc
## 4898      PSP            2009       Action
## 4899       PS            2001 Role-Playing
## 4900      PS3            2012       Action
## 4901     X360            2010 Role-Playing
## 4902      PSV            2012       Action
## 4903      3DS            2011       Sports
## 4904      Wii            2011         Misc
## 4905       XB            2003       Sports
## 4906      3DS            2011     Strategy
## 4907      GBA            2004       Sports
## 4908      N64            1999       Sports
## 4909      N64            2000     Fighting
## 4910      N64            1998       Racing
## 4911      N64            1999       Action
## 4912      Wii            2009       Action
## 4913      Wii            2009       Action
## 4914      PS4            2016    Adventure
## 4915       GC            2005    Adventure
## 4916     WiiU            2013     Platform
## 4917      Wii            2010       Action
## 4918      PS4            2013     Platform
## 4919      PS3            2010       Action
## 4920      PS2            2003         Misc
## 4921     X360            2009       Action
## 4922       DS            2008       Racing
## 4923      PS2            2000     Fighting
## 4924      PS2            2002       Action
## 4925      PS3            2010         Misc
## 4926     SNES            1991     Fighting
## 4927      PS2            2005       Sports
## 4928      PS3            2008       Action
## 4929      Wii            2011         Misc
## 4930      PS2            2003         Misc
## 4931     SNES            1992     Fighting
## 4932       GB            2001 Role-Playing
## 4933     X360            2012      Shooter
## 4934      PS2            2006     Platform
## 4935      GBA            2005   Simulation
## 4936     X360            2006       Action
## 4937     SNES            1994       Sports
## 4938       DS            2005     Strategy
## 4939      PS2            2002       Racing
## 4940      Wii            2012       Action
## 4941      PS3            2015       Sports
## 4942       XB            2005      Shooter
## 4943      PS2            2007       Sports
## 4944      PS4            2016       Racing
## 4945      PS4            2014         Misc
## 4946      PS3             N/A       Action
## 4947      3DS            2011       Action
## 4948      PS2            2008         Misc
## 4949     2600            1981       Action
## 4950       PS            1999   Simulation
## 4951      Wii            2009       Sports
## 4952       DS            2009    Adventure
## 4953      3DS            2013       Action
## 4954     X360            2010       Sports
## 4955      PS3            2008       Racing
## 4956     X360            2011      Shooter
## 4957      GBA            2003       Sports
## 4958      PS3            2011 Role-Playing
## 4959      PS2            2003       Action
## 4960      PS3             N/A       Action
## 4961       PS            1996       Sports
## 4962      PSV            2012       Racing
## 4963     SNES            1991       Sports
## 4964      PS2            2003 Role-Playing
## 4965       GB            1998     Platform
## 4966       PS            1997       Racing
## 4967       PS            1998       Racing
## 4968     X360            2013   Simulation
## 4969       XB            2004       Sports
## 4970      PS2            2007       Action
## 4971      PS2            2007     Strategy
## 4972      Wii            2009         Misc
## 4973      PS3            2006 Role-Playing
## 4974      GBA            2005     Platform
## 4975       DS            2007       Puzzle
## 4976      3DS            2011 Role-Playing
## 4977      PS2            2001       Sports
## 4978      Wii            2008     Fighting
## 4979       GC            2002      Shooter
## 4980      PS3            2007       Sports
## 4981       DS            2007         Misc
## 4982      PS2            2002     Strategy
## 4983      GBA            2002       Action
## 4984      PS2            2008       Sports
## 4985      PS2            2002       Action
## 4986      Wii            2013       Sports
## 4987       DS            2005     Platform
## 4988      PS3            2008       Action
## 4989      PS4            2015         Misc
## 4990      SAT            1995 Role-Playing
## 4991       DS            2009         Misc
## 4992       GC            2005     Fighting
## 4993       PS            1994       Sports
## 4994      Wii            2007       Sports
## 4995       PS            1998       Action
## 4996     X360            2014      Shooter
## 4997       PS            2000     Strategy
## 4998      PS2            2005         Misc
## 4999      PS2            2004       Racing
## 5000      3DS            2013    Adventure
## 5001       PC            2016      Shooter
## 5002       GC            2003       Sports
## 5003      3DS            2012       Action
## 5004      3DS            2011     Platform
## 5005      PS2            2010       Sports
## 5006      GBA            2004       Action
## 5007      PSP            2006     Platform
## 5008      PS2            2003     Strategy
## 5009      PS4            2016 Role-Playing
## 5010       PS            1996       Action
## 5011     X360            2016       Sports
## 5012      PS2            2002 Role-Playing
## 5013       DS            2007   Simulation
## 5014      PS2            2000      Shooter
## 5015       GB            1991 Role-Playing
## 5016      PS2            2008     Platform
## 5017      PS2            2008       Action
## 5018      PS2            2008      Shooter
## 5019       PC            2011       Action
## 5020       DS            2010    Adventure
## 5021      SAT            1996   Simulation
## 5022       PS            1999       Action
## 5023       XB            2002       Action
## 5024      PS2            2007       Racing
## 5025       PS            1998       Racing
## 5026       DS            2008 Role-Playing
## 5027       PC            2009   Simulation
## 5028     SNES            1995     Strategy
## 5029      PSV            2013 Role-Playing
## 5030      PS3            2010       Sports
## 5031       DS            2009       Action
## 5032       GC            2003    Adventure
## 5033      PSP            2011         Misc
## 5034      3DS            2012 Role-Playing
## 5035      Wii            2010         Misc
## 5036      PSP            2010       Action
## 5037       PS            2000       Racing
## 5038      PS3            2009       Sports
## 5039      Wii            2007    Adventure
## 5040       PS            1999       Sports
## 5041      PS2            2008       Action
## 5042     2600             N/A       Puzzle
## 5043       DS            2009       Racing
## 5044      PSP            2009     Fighting
## 5045      PSP            2007       Sports
## 5046      Wii            2008       Sports
## 5047       DS            2008   Simulation
## 5048      Wii            2008         Misc
## 5049       PC            2005     Strategy
## 5050      PSP            2010       Sports
## 5051     2600            1982       Action
## 5052      PS2            2004         Misc
## 5053      PS3            2014     Fighting
## 5054       XB            2005   Simulation
## 5055       DS            2013       Action
## 5056      PS2            2010     Fighting
## 5057      3DS            2011       Sports
## 5058      PS3            2013         Misc
## 5059     WiiU            2014       Sports
## 5060       GC            2004       Action
## 5061       DS            2009   Simulation
## 5062       DS            2008   Simulation
## 5063      Wii            2009         Misc
## 5064     WiiU            2012       Action
## 5065      PS3            2013       Racing
## 5066     2600            1986      Shooter
## 5067      PS4            2016       Action
## 5068      PS2            2006     Fighting
## 5069       DS            2010       Action
## 5070       DS            2008    Adventure
## 5071      PSP             N/A       Action
## 5072       PS            1997     Fighting
## 5073      PS3            2015   Simulation
## 5074      Wii            2009       Sports
## 5075      PS4            2016 Role-Playing
## 5076      PS3            2008         Misc
## 5077      PS2            2008       Sports
## 5078       GC            2005       Action
## 5079       XB            2002       Sports
## 5080     X360            2006       Sports
## 5081      Wii            2008   Simulation
## 5082      PSP            2011       Action
## 5083      PS3            2006       Sports
## 5084       PS            1994      Shooter
## 5085      PS2            2006   Simulation
## 5086     WiiU            2012         Misc
## 5087      PSP            2011 Role-Playing
## 5088       GC            2002     Platform
## 5089      PS2            2003       Sports
## 5090      PS2            2004       Sports
## 5091       DS            2010       Racing
## 5092       PC            2010       Racing
## 5093      PS2            2006       Action
## 5094      PS2            2002       Sports
## 5095     X360            2009         Misc
## 5096     SNES            1994       Sports
## 5097     X360            2007 Role-Playing
## 5098      SAT            1995      Shooter
## 5099      PS2            2007       Action
## 5100       PS            1998    Adventure
## 5101      Wii            2009       Sports
## 5102      PS3            2010     Fighting
## 5103       DS            2009         Misc
## 5104     X360            2005      Shooter
## 5105      PS3            2013       Sports
## 5106      PS3            2007       Sports
## 5107      Wii            2011       Sports
## 5108      N64            2000 Role-Playing
## 5109      N64            1999      Shooter
## 5110      N64            2000       Action
## 5111       PC            2011      Shooter
## 5112     2600            1981       Action
## 5113       GC            2004 Role-Playing
## 5114      PSP            2010       Action
## 5115      PS4            2016      Shooter
## 5116      3DS            2014         Misc
## 5117      Wii            2009       Racing
## 5118       GC            2002       Action
## 5119       DS            2007       Puzzle
## 5120     X360            2006       Action
## 5121      PS4            2016       Sports
## 5122      Wii            2007       Sports
## 5123      GBA            2003       Sports
## 5124      PS3            2015      Shooter
## 5125      PS3            2015       Action
## 5126       DS            2006     Platform
## 5127       DS            2009   Simulation
## 5128      PSP            2007       Racing
## 5129      GBA            2003    Adventure
## 5130     X360            2011 Role-Playing
## 5131       DS            2008   Simulation
## 5132      PS4            2016       Racing
## 5133      PSP            2005       Sports
## 5134     SNES            1994     Strategy
## 5135      PS2            2006       Sports
## 5136      Wii            2009       Sports
## 5137      Wii            2009       Action
## 5138      N64            1999       Sports
## 5139       DS            2007     Platform
## 5140     SNES            1994 Role-Playing
## 5141      PSP            2007       Action
## 5142     X360            2009      Shooter
## 5143      PS2            2006 Role-Playing
## 5144     XOne            2014       Action
## 5145      Wii            2008 Role-Playing
## 5146       DC            1998     Fighting
## 5147       PC            2008     Strategy
## 5148      Wii            2009       Action
## 5149       DS            2008     Fighting
## 5150       GB            1997     Strategy
## 5151     WiiU            2012       Action
## 5152      PS3            2011      Shooter
## 5153      PSP            2006 Role-Playing
## 5154      PS2            2007   Simulation
## 5155      PSP            2006       Sports
## 5156     WiiU            2012       Action
## 5157       XB             N/A       Sports
## 5158      Wii            2009 Role-Playing
## 5159       GC            2004      Shooter
## 5160       PC            2011       Action
## 5161     SNES            1994       Sports
## 5162      PS2            2008     Fighting
## 5163       DS            2006         Misc
## 5164      SAT            1996    Adventure
## 5165      PS2            2001       Sports
## 5166       PC            2014     Strategy
## 5167      PS3            2014       Sports
## 5168       DS            2008     Platform
## 5169      Wii            2008   Simulation
## 5170       DS            2009       Racing
## 5171       PC            2009      Shooter
## 5172      Wii            2010         Misc
## 5173       DS            2009    Adventure
## 5174     SNES            1994     Fighting
## 5175     WiiU            2016      Shooter
## 5176      PS3            2009       Action
## 5177     SNES            1993     Fighting
## 5178     X360            2010       Action
## 5179      PS2            2002    Adventure
## 5180      PS2            2003       Sports
## 5181      PS2            2005       Action
## 5182      PS2            2005      Shooter
## 5183       DS            2010     Fighting
## 5184       DS            2009 Role-Playing
## 5185       DS            2007       Sports
## 5186      PS3            2009     Platform
## 5187      PS2            2001   Simulation
## 5188      PS2            2005       Action
## 5189      PSV            2015 Role-Playing
## 5190       PS            1997   Simulation
## 5191     XOne            2013   Simulation
## 5192      GBA            2002       Action
## 5193      PS2            2001 Role-Playing
## 5194       PS            1997       Action
## 5195      GBA             N/A       Action
## 5196     X360            2009     Fighting
## 5197     SNES            1997     Platform
## 5198       PS            1997       Sports
## 5199      PS2            2000       Sports
## 5200       XB            2005       Action
## 5201      N64            2000       Action
## 5202      N64            1997       Puzzle
## 5203      NES            1993       Action
## 5204      N64            1997       Action
## 5205      Wii            2009     Fighting
## 5206      Wii            2008       Action
## 5207       PS            2001       Racing
## 5208      GBA            2001       Sports
## 5209      Wii            2008       Sports
## 5210      Wii            2010   Simulation
## 5211       XB            2004   Simulation
## 5212      PSP            2006 Role-Playing
## 5213      GBA            2002   Simulation
## 5214     SNES            1994 Role-Playing
## 5215       PS            1999       Racing
## 5216      PS4            2015         Misc
## 5217       XB            2003       Sports
## 5218      PS2            2005     Fighting
## 5219      PS2            2004       Sports
## 5220       DS            2007       Racing
## 5221      PS2            2004       Sports
## 5222     X360            2010       Action
## 5223      PSP            2012     Strategy
## 5224      Wii            2007       Action
## 5225      3DS            2014 Role-Playing
## 5226      PS2            2003     Platform
## 5227      PS2            2003 Role-Playing
## 5228       PS            2000   Simulation
## 5229      PS3            2008    Adventure
## 5230      GBA            2001     Strategy
## 5231     XOne            2016       Action
## 5232      PSP            2008       Sports
## 5233       PS            1995     Fighting
## 5234     2600            1981       Action
## 5235       XB            2002       Action
## 5236      PSP            2011 Role-Playing
## 5237       PS            1998       Racing
## 5238     SNES            1994     Platform
## 5239      PS2            2001       Racing
## 5240      PS2            2009       Sports
## 5241       DC            1999       Sports
## 5242     WiiU            2012       Sports
## 5243       DS            2010       Action
## 5244       PS            1997       Racing
## 5245       XB            2001     Platform
## 5246      PSV            2013 Role-Playing
## 5247      PS3            2014       Action
## 5248       PS            1998       Action
## 5249      PSV            2012       Racing
## 5250       DS            2008    Adventure
## 5251      GBA            2005       Sports
## 5252      PS2            2005       Sports
## 5253       DS            2005   Simulation
## 5254      Wii            2009         Misc
## 5255       GC            2005    Adventure
## 5256      PS4            2015   Simulation
## 5257      PS3            2013      Shooter
## 5258       PC            2014       Action
## 5259      PS2            2006 Role-Playing
## 5260       GB            1996       Puzzle
## 5261      PSP            2007      Shooter
## 5262     X360            2015   Simulation
## 5263     X360            2013       Sports
## 5264      3DS            2013       Action
## 5265      Wii            2009         Misc
## 5266      PS2            2004       Sports
## 5267      PS2            2003         Misc
## 5268      PSP            2008     Platform
## 5269      PSP            2009       Sports
## 5270      GBA            2002       Action
## 5271      PS2            2003       Action
## 5272       XB            2003       Sports
## 5273      Wii            2008       Sports
## 5274     X360            2011         Misc
## 5275      PSP            2009       Action
## 5276       DS            2007     Strategy
## 5277      PS2            2006       Sports
## 5278      PS3            2010       Action
## 5279      PS3            2009         Misc
## 5280     SNES            1995       Action
## 5281     SNES            1993       Racing
## 5282      Wii            2009       Sports
## 5283      PS2            2001     Fighting
## 5284      PS2            2003       Racing
## 5285       PS            2000 Role-Playing
## 5286      PS4            2016      Shooter
## 5287     WiiU            2012       Action
## 5288      PS4            2016     Fighting
## 5289      GBA            2003       Action
## 5290       DS            2011     Fighting
## 5291      Wii            2009     Fighting
## 5292      PSV            2013       Action
## 5293     X360            2013       Action
## 5294      N64            2000       Sports
## 5295      Wii             N/A       Action
## 5296       PC            2015   Simulation
## 5297      PS2            2003       Action
## 5298      PS3            2009     Strategy
## 5299       GC            2006       Racing
## 5300      GBA            2003       Action
## 5301      PSP            2012       Action
## 5302      PS2            2004     Platform
## 5303     X360            2010     Fighting
## 5304       PS            2000       Action
## 5305       XB            2003         Misc
## 5306      PS3            2013      Shooter
## 5307     X360            2009      Shooter
## 5308       DS            2009    Adventure
## 5309      PS2            2007       Sports
## 5310     X360            2015      Shooter
## 5311      PS3            2011     Fighting
## 5312      PS2            2009         Misc
## 5313      PS2            2002     Fighting
## 5314      Wii            2007       Action
## 5315      PS2            2005      Shooter
## 5316       PS            2001 Role-Playing
## 5317     X360            2008       Racing
## 5318     XOne            2016       Action
## 5319      PS2            2008     Platform
## 5320      PS2            2002       Sports
## 5321      PS4            2016     Platform
## 5322     XOne            2014      Shooter
## 5323       DS            2008         Misc
## 5324       GC            2004       Sports
## 5325      PS2            2003         Misc
## 5326      PS2            2003      Shooter
## 5327     X360             N/A     Strategy
## 5328      PS2            2000       Sports
## 5329       PS            1998       Racing
## 5330      PS2            2000 Role-Playing
## 5331      PS3            2008      Shooter
## 5332       PS            1999 Role-Playing
## 5333      SAT            1996     Fighting
## 5334      PS2            2002     Platform
## 5335      PSP            2006       Sports
## 5336       GC            2006     Platform
## 5337       PC             N/A       Action
## 5338      PS2            2005    Adventure
## 5339      PS4            2016       Action
## 5340       PS            1998       Puzzle
## 5341      GBA            2005         Misc
## 5342      Wii            2011       Sports
## 5343     X360            2007       Action
## 5344      PSP            2011     Strategy
## 5345      GBA            2002     Platform
## 5346      PS2            2008         Misc
## 5347      Wii            2009    Adventure
## 5348      PS2            2006       Action
## 5349     WiiU            2013      Shooter
## 5350      PS3            2011       Action
## 5351       DC            1999     Fighting
## 5352       PS            1999       Racing
## 5353     X360            2008       Sports
## 5354      Wii            2010         Misc
## 5355      GBA            2004     Platform
## 5356       DS            2007       Action
## 5357      Wii            2011     Fighting
## 5358     X360            2011     Fighting
## 5359      PS3            2009       Action
## 5360     X360            2012     Fighting
## 5361     2600            1980       Action
## 5362      GBA            2002       Action
## 5363      PS2            2003   Simulation
## 5364       DS            2009       Action
## 5365      PS2            2004    Adventure
## 5366      SAT            1995      Shooter
## 5367      Wii            2007     Strategy
## 5368      PS2            2009       Racing
## 5369      GBA            2004     Platform
## 5370       PS            1997     Fighting
## 5371      PS2            2000       Puzzle
## 5372       XB            2004      Shooter
## 5373     X360            2010     Strategy
## 5374      PS2            2001   Simulation
## 5375     2600            1983       Action
## 5376     2600            1982       Action
## 5377     WiiU            2016       Action
## 5378       DS            2007       Action
## 5379      PS3            2010       Sports
## 5380       PC            2013     Strategy
## 5381      Wii            2006   Simulation
## 5382      Wii            2010   Simulation
## 5383       GC            2005     Fighting
## 5384      Wii            2011       Sports
## 5385       XB            2004   Simulation
## 5386     2600            1981       Action
## 5387      PS3            2010       Sports
## 5388      SAT            1995     Fighting
## 5389     XOne            2014     Platform
## 5390       DS            2005       Action
## 5391      PS3            2008         Misc
## 5392       DS            2008   Simulation
## 5393      N64            1998       Racing
## 5394     X360            2006       Action
## 5395     2600            1982       Action
## 5396      PS3            2007       Action
## 5397       PS            1998         Misc
## 5398     2600            1981      Shooter
## 5399      PS2            2004    Adventure
## 5400       XB            2006       Sports
## 5401      PSP            2011     Fighting
## 5402       DS            2007         Misc
## 5403       PS            1997      Shooter
## 5404     XOne            2015       Action
## 5405       DS            2008       Racing
## 5406     X360            2006      Shooter
## 5407       PS            1998       Action
## 5408      PSP            2010     Strategy
## 5409      3DS            2011     Strategy
## 5410       DS            2008         Misc
## 5411       XB            2002       Racing
## 5412      PS3            2012      Shooter
## 5413       PC            2011   Simulation
## 5414      GBA            2005       Racing
## 5415       GC            2003       Action
## 5416     X360            2005       Action
## 5417      PSP            2007       Sports
## 5418      PS3            2009       Action
## 5419      PS3            2010      Shooter
## 5420      PS2            2009         Misc
## 5421      PS4            2015     Fighting
## 5422       DS            2008   Simulation
## 5423       DS            2007       Puzzle
## 5424      PS2            2008       Action
## 5425      PSP            2008 Role-Playing
## 5426       DS            2008   Simulation
## 5427       PS            1996       Action
## 5428      PS2            2001       Racing
## 5429      3DS            2015       Action
## 5430       XB            2005      Shooter
## 5431     X360            2007       Action
## 5432      3DS            2013     Strategy
## 5433      PS2            2005         Misc
## 5434      PS3            2007         Misc
## 5435      PS3            2011       Action
## 5436       XB            2006      Shooter
## 5437       DS            2010       Action
## 5438       PS            1996       Racing
## 5439      PS3            2008       Sports
## 5440      PS4            2016 Role-Playing
## 5441      PS2            2003    Adventure
## 5442      GBA            2003     Platform
## 5443       PS            1998       Puzzle
## 5444       DS             N/A       Puzzle
## 5445      PS4            2016       Sports
## 5446       DS            2007     Platform
## 5447       DS            2009       Action
## 5448      PS3            2009       Sports
## 5449      PS4            2016 Role-Playing
## 5450      PSP            2006 Role-Playing
## 5451       PS            1998       Action
## 5452      PSP            2009 Role-Playing
## 5453       DS            2009       Action
## 5454     X360            2011       Action
## 5455       DS            2006    Adventure
## 5456      PSP            2004         Misc
## 5457       GC            2003     Fighting
## 5458       GC            2005   Simulation
## 5459       XB            2003       Action
## 5460      PSP            2006 Role-Playing
## 5461      PS2            2001     Platform
## 5462       XB            2003      Shooter
## 5463      PS2            2002       Action
## 5464       XB            2001       Racing
## 5465     X360            2011     Fighting
## 5466       PS            1999   Simulation
## 5467       GC            2004     Platform
## 5468     X360            2008      Shooter
## 5469     X360            2009       Action
## 5470       DS            2009       Puzzle
## 5471      PSV            2012       Action
## 5472      Wii            2007       Action
## 5473      PS2            2002       Sports
## 5474      PS3            2013      Shooter
## 5475      GBA            2005       Action
## 5476      PS2            2002     Fighting
## 5477       PS            1999       Sports
## 5478      PSP            2011       Action
## 5479       GB            1990       Sports
## 5480     SNES            1994       Sports
## 5481     X360            2009       Sports
## 5482      PSP            2006     Fighting
## 5483      PS2            2009       Sports
## 5484      PS2            2001       Sports
## 5485      Wii            2008   Simulation
## 5486      GBA            2004     Platform
## 5487      PS2            2009       Action
## 5488       XB            2006     Fighting
## 5489      GBA            2001       Racing
## 5490      PS2            2003       Action
## 5491       DS            2007       Puzzle
## 5492      N64            1998       Action
## 5493      N64             N/A Role-Playing
## 5494     X360            2007       Action
## 5495      PS3            2010       Sports
## 5496      PSP            2011         Misc
## 5497       PS            1998     Platform
## 5498      PS2            2006 Role-Playing
## 5499      PS2            2002    Adventure
## 5500     SNES            1991       Sports
## 5501       DS            2007 Role-Playing
## 5502       GC            2005      Shooter
## 5503      3DS            2015     Fighting
## 5504      Wii            2009       Action
## 5505      PS2            2003 Role-Playing
## 5506      PS2            2005     Fighting
## 5507     X360            2010 Role-Playing
## 5508      Wii            2011       Action
## 5509      Wii            2011         Misc
## 5510       GC            2006     Platform
## 5511      PSP            2008       Sports
## 5512       PS            1994      Shooter
## 5513      Wii            2010         Misc
## 5514      GBA            2003     Platform
## 5515       DC            2001    Adventure
## 5516      PSP            2006         Misc
## 5517       PS            2000       Sports
## 5518      GBA            2003         Misc
## 5519       GC            2005     Fighting
## 5520       PC            2012       Action
## 5521     SNES            1991     Strategy
## 5522       GC            2005       Sports
## 5523       DS            2007         Misc
## 5524      Wii            2007       Sports
## 5525       PS            1997         Misc
## 5526      PSV            2013         Misc
## 5527       PS            1996       Sports
## 5528      PS3            2009       Action
## 5529      PS3            2014      Shooter
## 5530      PS2            2007       Action
## 5531       GC            2006       Action
## 5532      Wii            2010         Misc
## 5533      Wii            2008       Racing
## 5534     2600            1983       Action
## 5535      PS3            2012       Action
## 5536       GC            2005       Sports
## 5537     2600            1981       Action
## 5538      GBA            2005       Puzzle
## 5539      Wii            2010         Misc
## 5540     X360            2010       Sports
## 5541       PS            1995     Fighting
## 5542      PSP            2009       Sports
## 5543       XB            2006       Sports
## 5544     X360            2008       Action
## 5545      PS2            2004         Misc
## 5546       DS            2007       Sports
## 5547      PS3            2010         Misc
## 5548       DS            2009   Simulation
## 5549       PC            2008 Role-Playing
## 5550      GBA            2004       Action
## 5551      PS2            2004       Action
## 5552      Wii            2011    Adventure
## 5553      Wii            2010       Action
## 5554      PSP            2012     Fighting
## 5555       PC            2011 Role-Playing
## 5556      Wii            2010       Action
## 5557      PS2            2003      Shooter
## 5558     X360            2009       Sports
## 5559       PS            1999       Sports
## 5560      Wii            2011       Action
## 5561     X360            2009     Strategy
## 5562      Wii            2006       Action
## 5563       DS            2009   Simulation
## 5564      PS3            2010         Misc
## 5565      3DS            2015         Misc
## 5566     XOne            2015         Misc
## 5567      PS3            2008       Action
## 5568       PC            2011      Shooter
## 5569      N64            1998       Sports
## 5570       DS            2008         Misc
## 5571       DS            2008       Action
## 5572     X360            2011         Misc
## 5573      PS2            2001       Racing
## 5574     X360            2011         Misc
## 5575       XB            2005       Sports
## 5576       PS            1997       Puzzle
## 5577       PS            2002 Role-Playing
## 5578      Wii            2009 Role-Playing
## 5579      PS3            2013       Action
## 5580     X360            2012       Action
## 5581       PS            1996       Action
## 5582      PS3            2011       Action
## 5583       PS            1997       Sports
## 5584     XOne            2015     Fighting
## 5585     X360            2007 Role-Playing
## 5586       PS            1999   Simulation
## 5587     X360            2012     Fighting
## 5588      PS2            2003     Fighting
## 5589      PS2             N/A Role-Playing
## 5590      3DS            2014     Strategy
## 5591     X360            2009       Action
## 5592       DS            2008       Sports
## 5593     X360            2007   Simulation
## 5594      PS2            2008       Action
## 5595       PC            2009       Action
## 5596      PSP            2007     Strategy
## 5597      PS2            2005      Shooter
## 5598     X360            2005       Sports
## 5599     X360            2007       Puzzle
## 5600       DS            2010     Platform
## 5601       DS            2009   Simulation
## 5602       DS            2009   Simulation
## 5603       GC            2003       Action
## 5604      PS3            2011       Action
## 5605      PS2            2000   Simulation
## 5606      N64            1997       Sports
## 5607       PS            2000     Platform
## 5608     X360            2015         Misc
## 5609       GB            1995       Puzzle
## 5610       PC            2016 Role-Playing
## 5611      PSV            2014         Misc
## 5612      Wii            2006     Fighting
## 5613      PS3            2008       Sports
## 5614      GBA            2001       Action
## 5615       DS            2010    Adventure
## 5616       PS            2000       Sports
## 5617      PS3            2011      Shooter
## 5618      Wii            2011       Action
## 5619      Wii            2008         Misc
## 5620      PSP            2009       Racing
## 5621       PS            1997       Racing
## 5622      PS2            2003     Platform
## 5623      PS3            2012       Action
## 5624       PS            1995         Misc
## 5625     X360             N/A      Shooter
## 5626      PS2            2004         Misc
## 5627      PS3            2009       Racing
## 5628      PSP            2010      Shooter
## 5629      PS2            2001   Simulation
## 5630      SAT            1995     Fighting
## 5631      PSV            2015         Misc
## 5632     X360            2011         Misc
## 5633       PS            1999       Sports
## 5634      GBA            2005         Misc
## 5635      PS2            2002     Fighting
## 5636      Wii            2011         Misc
## 5637      GBA            2005     Platform
## 5638      NES            1991       Puzzle
## 5639      PS2            2003       Sports
## 5640      PS2            2009         Misc
## 5641     X360            2006      Shooter
## 5642      GBA            2002    Adventure
## 5643     2600             N/A       Racing
## 5644     2600            1982       Action
## 5645      PSP            2008       Sports
## 5646       PS            1997    Adventure
## 5647      PS3            2007 Role-Playing
## 5648       DS            2008       Sports
## 5649      PS4            2014       Action
## 5650      PS3            2012      Shooter
## 5651       XB            2002       Sports
## 5652      Wii            2010     Strategy
## 5653     SNES            1993 Role-Playing
## 5654      PS2            2003     Fighting
## 5655      GBA            2002         Misc
## 5656      PS2             N/A       Sports
## 5657       PS            1997   Simulation
## 5658       PS            1997     Strategy
## 5659     SNES            1994 Role-Playing
## 5660       XB            2003       Sports
## 5661      GBA            2001       Sports
## 5662      Wii            2008       Racing
## 5663     X360            2008       Sports
## 5664     X360            2010       Sports
## 5665      PS2            2008       Sports
## 5666     X360            2006       Racing
## 5667      PSP            2005     Fighting
## 5668       DS            2009       Sports
## 5669       DS            2011       Action
## 5670       XB            2004     Strategy
## 5671      PS2            2001       Racing
## 5672     X360            2007      Shooter
## 5673     X360            2015    Adventure
## 5674     SNES            1996         Misc
## 5675       PS            2001       Action
## 5676      PS2            2000     Strategy
## 5677       DS            2008    Adventure
## 5678       PC            2011 Role-Playing
## 5679       DS            2009   Simulation
## 5680      PS2            2002    Adventure
## 5681      PS2            2009         Misc
## 5682      PSP            2010 Role-Playing
## 5683      PS3            2011       Action
## 5684       DS            2008         Misc
## 5685      PSP            2009     Fighting
## 5686      Wii            2009      Shooter
## 5687      PS2            2004       Action
## 5688       XB            2002    Adventure
## 5689     X360            2007       Action
## 5690     X360            2016       Action
## 5691     XOne            2013     Platform
## 5692       PS            1998     Platform
## 5693      PS3            2011       Sports
## 5694       DC            1999       Sports
## 5695      PS3            2012       Racing
## 5696      PS3            2009       Action
## 5697       PS            1997     Strategy
## 5698      PSP            2007       Action
## 5699      PSP            2011 Role-Playing
## 5700     X360            2010     Fighting
## 5701      PS3            2007       Sports
## 5702       XB            2003       Racing
## 5703       DS            2010 Role-Playing
## 5704       PC            2013       Action
## 5705       PS            1995       Sports
## 5706     X360            2009       Action
## 5707      PS2            2007       Sports
## 5708      Wii            2007         Misc
## 5709      GBA            2003       Sports
## 5710     SNES            1995     Platform
## 5711      PSP            2008       Sports
## 5712       GB            1999       Action
## 5713       DS            2007 Role-Playing
## 5714       PS            1998         Misc
## 5715      Wii            2009         Misc
## 5716       XB            2002       Sports
## 5717      PS2            2005       Sports
## 5718      Wii            2008 Role-Playing
## 5719      PSP            2010 Role-Playing
## 5720      PS3            2013 Role-Playing
## 5721     X360            2011    Adventure
## 5722      PS3            2014     Fighting
## 5723      PS2            2003         Misc
## 5724       PS            1996    Adventure
## 5725       XB            2004     Strategy
## 5726       DS            2011       Action
## 5727       XB            2005       Action
## 5728     X360            2008         Misc
## 5729      3DS            2011       Puzzle
## 5730       XB            2005       Action
## 5731     WiiU            2013       Action
## 5732      3DS            2014       Action
## 5733       DS            2011 Role-Playing
## 5734       PS            1997      Shooter
## 5735       PS            1998         Misc
## 5736     WiiU            2014       Action
## 5737     XOne            2014       Action
## 5738       PC            2010     Strategy
## 5739      PSP            2007       Racing
## 5740     X360            2008     Platform
## 5741       DS            2009       Puzzle
## 5742      PS2            2003   Simulation
## 5743      PS2            2009     Strategy
## 5744       DS            2007       Action
## 5745     X360            2009       Racing
## 5746      SAT            1995      Shooter
## 5747      PS4            2015   Simulation
## 5748       PS            2001       Action
## 5749       XB            2005      Shooter
## 5750      3DS            2013    Adventure
## 5751      GBA            2005       Action
## 5752       PS            1999     Strategy
## 5753       DS            2011         Misc
## 5754      PS4            2015       Action
## 5755       DS            2009       Puzzle
## 5756      Wii            2007       Sports
## 5757     X360            2010       Action
## 5758      Wii            2008       Sports
## 5759      N64            1998     Platform
## 5760      N64            1999       Racing
## 5761      N64            1998       Racing
## 5762      N64            1999       Sports
## 5763      N64            2001   Simulation
## 5764      N64            1997       Sports
## 5765       DS            2006       Action
## 5766      PSP            2007       Action
## 5767      PSP            2005     Platform
## 5768      PS2            2007       Sports
## 5769       DS            2007    Adventure
## 5770       XB             N/A      Shooter
## 5771      PS3            2010       Action
## 5772      GBA            2002       Action
## 5773      PS3            2008       Sports
## 5774      Wii            2011 Role-Playing
## 5775     2600            1982       Action
## 5776      PS2            2005         Misc
## 5777     X360            2006     Strategy
## 5778      PS2            2008       Sports
## 5779      Wii            2009   Simulation
## 5780     X360            2005       Sports
## 5781      SAT            1997 Role-Playing
## 5782       DS            2010       Action
## 5783     X360            2011       Sports
## 5784       PS            1998       Racing
## 5785       XB            2004         Misc
## 5786       PS            1997   Simulation
## 5787      Wii            2008       Action
## 5788       GC            2002       Racing
## 5789      PSP            2012     Strategy
## 5790      3DS            2012 Role-Playing
## 5791       DS            2010     Platform
## 5792      PS3            2009         Misc
## 5793       PS            1998       Sports
## 5794     X360            2012       Sports
## 5795      PS2            2002       Racing
## 5796       DS            2010     Strategy
## 5797      PS2            2001       Sports
## 5798       PS            1998         Misc
## 5799      Wii            2009       Sports
## 5800      PS2            2001         Misc
## 5801     2600             N/A       Action
## 5802     SNES            1993     Platform
## 5803      Wii            2008         Misc
## 5804     2600            1981       Action
## 5805       PS            1999     Platform
## 5806      PS2            2002       Action
## 5807      Wii            2008         Misc
## 5808       DS            2009         Misc
## 5809     X360            2010       Action
## 5810       PS            1999         Misc
## 5811       DS            2006       Puzzle
## 5812       XB            2002     Fighting
## 5813       PS            2000       Puzzle
## 5814      GBA            2001       Puzzle
## 5815       PS            2000     Platform
## 5816      PS3            2014     Fighting
## 5817      PS4            2015       Action
## 5818      PS2            2002       Action
## 5819     SNES            1996 Role-Playing
## 5820     SNES            1994     Fighting
## 5821      PS2            2000 Role-Playing
## 5822      PSP            2007       Sports
## 5823       DS            2005       Action
## 5824      GBA            2005       Action
## 5825       XB            2003       Racing
## 5826      GBA            2002       Racing
## 5827       GB            1995         Misc
## 5828       DS            2007      Shooter
## 5829      SAT            1996      Shooter
## 5830       PS            1998     Fighting
## 5831      PSP            2005         Misc
## 5832      GBA            2003     Platform
## 5833      PS3            2009       Action
## 5834       PS            2000       Action
## 5835     X360            2011       Racing
## 5836      PS3            2013     Fighting
## 5837      PS3            2012     Strategy
## 5838       DS            2006     Fighting
## 5839       PC            2012 Role-Playing
## 5840       PS            1995     Platform
## 5841      3DS            2016         Misc
## 5842      PS2            2005         Misc
## 5843       GC            2002       Racing
## 5844      GBA            2005     Platform
## 5845      PS2            2003       Action
## 5846       DS            2009       Puzzle
## 5847      GBA            2005    Adventure
## 5848      PS2            2005    Adventure
## 5849      SAT            1995 Role-Playing
## 5850     XOne            2016     Fighting
## 5851      GBA            2006         Misc
## 5852       DS            2007     Strategy
## 5853       PS            1997       Racing
## 5854       DS            2010     Platform
## 5855      PS4            2016       Action
## 5856      PSP            2006       Puzzle
## 5857      PS2            2006    Adventure
## 5858       PS             N/A       Racing
## 5859      NES            1990       Sports
## 5860       DS            2005     Platform
## 5861      PS3            2011     Fighting
## 5862     X360            2014      Shooter
## 5863      PS2            2007     Strategy
## 5864      PSV            2014       Action
## 5865      SAT            1994       Sports
## 5866      3DS            2011       Action
## 5867     X360            2009 Role-Playing
## 5868       DS            2007       Action
## 5869      PSP            2011 Role-Playing
## 5870      PS2            2002     Strategy
## 5871       DS            2008 Role-Playing
## 5872     SNES            1994 Role-Playing
## 5873      PS2            2001       Sports
## 5874     X360            2013       Racing
## 5875      3DS             N/A   Simulation
## 5876      N64            1999      Shooter
## 5877      N64            1999       Racing
## 5878      GBA            2003       Racing
## 5879       DS            2006         Misc
## 5880     X360            2007 Role-Playing
## 5881     X360            2011     Fighting
## 5882       DS            2009    Adventure
## 5883       PS            1997   Simulation
## 5884      PS2            2000     Platform
## 5885      GBA            2003       Action
## 5886     SNES            1997       Puzzle
## 5887      3DS            2011       Action
## 5888      PSV            2012       Sports
## 5889       PS            2000       Action
## 5890       GC             N/A       Sports
## 5891      PS3            2007      Shooter
## 5892      PS2            2003     Fighting
## 5893      PS2            2000 Role-Playing
## 5894      SAT            1996     Strategy
## 5895      PS4            2014       Action
## 5896      Wii            2008       Action
## 5897     X360            2007       Action
## 5898      PSP            2010       Action
## 5899      PSV            2016 Role-Playing
## 5900     SNES            1995       Sports
## 5901       PS            1996     Fighting
## 5902     X360            2008   Simulation
## 5903      PS2            2004     Fighting
## 5904      PSV            2014 Role-Playing
## 5905       DS            2009   Simulation
## 5906     SNES            1995 Role-Playing
## 5907      PS2            2005     Strategy
## 5908      Wii            2010         Misc
## 5909      PS2            2006   Simulation
## 5910      Wii            2008       Racing
## 5911      GBA            2003       Sports
## 5912       DS            2007       Sports
## 5913      GBA            2004       Action
## 5914      GBA            2002     Platform
## 5915       DS            2007       Action
## 5916       PS            1997   Simulation
## 5917       DS            2009   Simulation
## 5918       GB            1999   Simulation
## 5919      PS3            2012     Fighting
## 5920       GC            2004       Action
## 5921      PS2            2004       Sports
## 5922       DS            2011         Misc
## 5923      Wii            2010       Sports
## 5924       XB            2003       Action
## 5925      PSP            2006         Misc
## 5926       PC            2006   Simulation
## 5927     XOne            2016       Action
## 5928      PSV            2011     Platform
## 5929      PSP            2007     Platform
## 5930       XB            2003       Sports
## 5931     X360            2006       Action
## 5932       GC            2002     Platform
## 5933       DS             N/A       Action
## 5934       DS            2010 Role-Playing
## 5935      PS3            2012       Action
## 5936     2600            1986       Sports
## 5937       DS            2020   Simulation
## 5938     X360            2007       Action
## 5939      PS2            2002 Role-Playing
## 5940      Wii            2009       Sports
## 5941     X360            2007       Action
## 5942     X360            2009         Misc
## 5943      PS3            2009       Racing
## 5944       DS            2010       Action
## 5945       PC            2004   Simulation
## 5946       DS            2010       Action
## 5947      GBA            2003       Racing
## 5948     X360            2010         Misc
## 5949      GBA            2002       Sports
## 5950      SAT            1995 Role-Playing
## 5951       XB            2002       Sports
## 5952       PS            1999       Sports
## 5953      Wii            2010       Action
## 5954     X360            2009       Action
## 5955      PS2            2002    Adventure
## 5956      3DS            2013       Action
## 5957      PSV            2014       Action
## 5958      PSP            2010    Adventure
## 5959      PS2            2009       Action
## 5960       GC            2005       Sports
## 5961       DS            2006       Action
## 5962      PS2            2000      Shooter
## 5963       PS            1998     Strategy
## 5964      PSP            2006      Shooter
## 5965       PS            2000       Sports
## 5966      PSP            2010     Strategy
## 5967       DS            2008 Role-Playing
## 5968     X360            2011         Misc
## 5969     X360            2009       Action
## 5970      PSV            2012       Racing
## 5971     X360            2005       Sports
## 5972      Wii            2010       Sports
## 5973      SAT            1996       Sports
## 5974       PC            2005       Racing
## 5975       PS            2000         Misc
## 5976       PS            1997     Strategy
## 5977      PS2            2008     Platform
## 5978      PS3            2010      Shooter
## 5979      PSV            2011     Fighting
## 5980      Wii            2009     Strategy
## 5981      PS2            2006 Role-Playing
## 5982     SNES            1994         Misc
## 5983      PS3            2009       Action
## 5984       GC            2002     Fighting
## 5985       DS            2009         Misc
## 5986     2600            1983       Action
## 5987     X360            2010 Role-Playing
## 5988       DS            2008     Strategy
## 5989       XB            2005      Shooter
## 5990      PS4            2015       Action
## 5991      PS4            2016       Sports
## 5992      GBA            2003   Simulation
## 5993       DS            2009   Simulation
## 5994      PS3            2009      Shooter
## 5995      PS2            2004     Platform
## 5996     X360            2009      Shooter
## 5997      PS2            2005       Racing
## 5998     2600            1981       Action
## 5999       DS            2010       Puzzle
## 6000      PSP            2008       Racing
## 6001      PS2            2001       Sports
## 6002      N64            1999       Racing
## 6003      N64            1999       Racing
## 6004      N64            1997     Fighting
## 6005      N64            1998       Racing
## 6006      N64            1998       Racing
## 6007      N64            1999       Sports
## 6008      N64            1999       Puzzle
## 6009      N64            1999     Fighting
## 6010      PS3            2007       Action
## 6011      GBA            2003         Misc
## 6012      PS2            2009     Fighting
## 6013       DS            2007   Simulation
## 6014      Wii            2008   Simulation
## 6015      PS3            2015       Action
## 6016      PS2            2005   Simulation
## 6017      Wii            2007       Action
## 6018       GC            2004 Role-Playing
## 6019       DS            2005    Adventure
## 6020      PSP            2005 Role-Playing
## 6021       GC             N/A       Action
## 6022      Wii            2012         Misc
## 6023      PSV            2013     Fighting
## 6024       PC            2014      Shooter
## 6025       XB            2007       Sports
## 6026       PS            1996         Misc
## 6027      Wii            2007   Simulation
## 6028      PS3            2012       Action
## 6029       XB            2003 Role-Playing
## 6030      3DS            2012       Action
## 6031      PSP            2010   Simulation
## 6032       XB            2005       Action
## 6033       PS            1996       Sports
## 6034      Wii            2009       Sports
## 6035      Wii            2010     Platform
## 6036     X360            2008      Shooter
## 6037     SNES            1991 Role-Playing
## 6038      Wii            2011         Misc
## 6039      3DS            2014       Action
## 6040      PS2            2002         Misc
## 6041      Wii            2007       Sports
## 6042       DS            2007       Puzzle
## 6043       DC            2002    Adventure
## 6044      PS2            2005 Role-Playing
## 6045      PS2            2002     Strategy
## 6046      PS3            2011      Shooter
## 6047       PS            2000       Sports
## 6048      Wii            2010         Misc
## 6049      PS3            2013     Strategy
## 6050     XOne            2014       Action
## 6051       PC            2003   Simulation
## 6052     X360            2012      Shooter
## 6053      Wii            2007       Puzzle
## 6054      3DS            2013         Misc
## 6055      Wii            2009       Action
## 6056      PS2            2007       Sports
## 6057       PS            2000       Racing
## 6058      PS4            2015 Role-Playing
## 6059      PS2            2004 Role-Playing
## 6060       PS            1996         Misc
## 6061      Wii            2010       Action
## 6062      PS2            2003     Platform
## 6063       DS            2008    Adventure
## 6064      PSP            2008       Action
## 6065       DS            2004       Puzzle
## 6066      PS2            2004      Shooter
## 6067       PS            1999     Platform
## 6068      PS2            2006 Role-Playing
## 6069       DS            2008       Puzzle
## 6070       PS            1999   Simulation
## 6071     SNES            1992     Strategy
## 6072       DS            2008       Sports
## 6073      3DS            2012       Racing
## 6074      Wii            2009       Action
## 6075      Wii            2008   Simulation
## 6076       GC            2004     Platform
## 6077     X360            2007       Racing
## 6078       DS            2011         Misc
## 6079       PC            2011      Shooter
## 6080       XB            2003       Sports
## 6081       PS            1996       Sports
## 6082      PS3            2010    Adventure
## 6083     WiiU            2013       Action
## 6084      GBA            2001     Platform
## 6085      GBA            2003 Role-Playing
## 6086       DS            2008       Action
## 6087      PS4            2016       Action
## 6088      PS2            2003       Racing
## 6089      PS2            2008         Misc
## 6090       PS            1997       Racing
## 6091      PS3            2012       Sports
## 6092       DS            2005   Simulation
## 6093      GBA            2003       Sports
## 6094      GBA            2005       Action
## 6095     SNES            1995     Fighting
## 6096     X360            2015      Shooter
## 6097     SNES            1994       Sports
## 6098       PS            2000     Platform
## 6099       PC            2014       Sports
## 6100       XB            2005       Action
## 6101      PS2            2001 Role-Playing
## 6102      Wii            2006     Fighting
## 6103      PS2             N/A     Platform
## 6104       XB            2002       Sports
## 6105      GBA            2006 Role-Playing
## 6106      GBA            2001       Action
## 6107      PS2            2003       Racing
## 6108      PS2            2003       Sports
## 6109       DS            2010       Puzzle
## 6110      PS3            2007       Action
## 6111       GC            2003       Racing
## 6112       WS            1999 Role-Playing
## 6113      PS3            2013         Misc
## 6114      GBA            2005       Action
## 6115      PS4            2015 Role-Playing
## 6116       XB            2005     Fighting
## 6117      SAT            1995     Fighting
## 6118      GBA            2004   Simulation
## 6119      GBA            2006 Role-Playing
## 6120      PSV            2012       Action
## 6121     2600            1982       Action
## 6122       DS            2008       Sports
## 6123      PS2            2004       Action
## 6124      N64            1999       Sports
## 6125     X360            2009      Shooter
## 6126       DS            2007   Simulation
## 6127     X360            2012 Role-Playing
## 6128       DS            2007    Adventure
## 6129       PS            2002       Action
## 6130       DS            2010         Misc
## 6131      PS3            2007       Action
## 6132     X360            2009       Action
## 6133     X360            2006   Simulation
## 6134      PS2            2003       Action
## 6135       XB             N/A      Shooter
## 6136       XB            2003     Fighting
## 6137       GB            1991     Platform
## 6138      Wii            2009       Sports
## 6139      Wii            2007       Action
## 6140      GBA            2002     Fighting
## 6141      NES            1991       Sports
## 6142      PSP            2011 Role-Playing
## 6143      PS2            2002         Misc
## 6144      PS2            2007       Action
## 6145       GB            1991     Platform
## 6146      PSP            2006    Adventure
## 6147     SNES            1991       Action
## 6148      PS2            2008       Action
## 6149      GBA            2002     Platform
## 6150      PS2            2006       Puzzle
## 6151     X360            2011      Shooter
## 6152     X360            2011       Action
## 6153      PS2            2002       Racing
## 6154       DS            2007       Sports
## 6155       DS            2009       Action
## 6156      PS2            2007      Shooter
## 6157       XB            2003      Shooter
## 6158      PS2            2003     Platform
## 6159       DS            2010         Misc
## 6160      PSP            2007       Sports
## 6161       DS            2010       Action
## 6162      GBA            2001     Platform
## 6163      PS2            2006       Racing
## 6164      3DS            2016       Action
## 6165      Wii            2010     Platform
## 6166       DS            2004   Simulation
## 6167       DS            2006     Platform
## 6168      PS2            2004     Fighting
## 6169      GBA            2002       Action
## 6170      Wii            2009         Misc
## 6171       PS            1998     Fighting
## 6172      PS3            2010      Shooter
## 6173      PS2            2006 Role-Playing
## 6174      PS4            2015      Shooter
## 6175      PS2            2002       Sports
## 6176     SNES            1995     Platform
## 6177      PS3            2011       Action
## 6178      PS3            2010       Sports
## 6179      Wii            2010         Misc
## 6180       DS            2007   Simulation
## 6181       XB            2004       Sports
## 6182       GC             N/A       Action
## 6183       PS            1995       Sports
## 6184     X360            2014      Shooter
## 6185      Wii            2010       Action
## 6186      GBA            2003       Racing
## 6187      PSP            2008       Action
## 6188      3DS            2012         Misc
## 6189     X360            2011       Sports
## 6190     SNES            1992       Sports
## 6191       GC            2004       Action
## 6192       XB            2001       Action
## 6193      PS3            2014      Shooter
## 6194     WiiU            2014       Action
## 6195      3DS            2014       Action
## 6196      PS2            2007 Role-Playing
## 6197      PS2            2001       Sports
## 6198      PS2            2002       Sports
## 6199     X360            2009     Platform
## 6200     X360            2010         Misc
## 6201       GC             N/A         Misc
## 6202      PS3            2009         Misc
## 6203      PS3            2011       Action
## 6204       DS            2007     Strategy
## 6205     X360            2014       Action
## 6206      PS2            2000       Sports
## 6207      PS2            2001      Shooter
## 6208       DS            2006     Platform
## 6209      SAT            1997     Strategy
## 6210      PS4            2016       Action
## 6211     X360            2011       Sports
## 6212      Wii            2009    Adventure
## 6213       PS            1998     Strategy
## 6214      PS2            2008       Action
## 6215       XB            2005     Platform
## 6216      Wii            2011         Misc
## 6217     X360            2007     Fighting
## 6218      PS2            2009       Action
## 6219     X360            2013     Strategy
## 6220     SNES            1992       Racing
## 6221      SAT            1994   Simulation
## 6222      PS2            2003       Sports
## 6223       DS            2006       Puzzle
## 6224       GC            2003         Misc
## 6225       PS            1998 Role-Playing
## 6226       GC            2001       Sports
## 6227      PS3            2014       Action
## 6228       DS            2011   Simulation
## 6229       PS            1998     Fighting
## 6230      PS2            2008       Action
## 6231       XB            2005       Action
## 6232      PS2            2003       Sports
## 6233      PS2            2008       Sports
## 6234      Wii            2006    Adventure
## 6235      GBA            2001       Sports
## 6236      GBA            2003     Platform
## 6237      PS2            2002    Adventure
## 6238       DS            2009 Role-Playing
## 6239      SAT            1996      Shooter
## 6240       PS            1997   Simulation
## 6241      PS3            2013      Shooter
## 6242       GB            2000     Platform
## 6243      3DS            2012         Misc
## 6244     SNES            1995         Misc
## 6245     X360            2006       Sports
## 6246      PSP            2011         Misc
## 6247      Wii            2009       Action
## 6248      3DS            2016    Adventure
## 6249      PS2            2007       Sports
##                                   Publisher NA_Sales EU_Sales JP_Sales
## 1                                  Nintendo    41.36    28.96     3.77
## 2                                  Nintendo    29.08     3.58     6.81
## 3                                  Nintendo    15.68    12.76     3.79
## 4                                  Nintendo    15.61    10.93     3.28
## 5                                  Nintendo    11.27     8.89    10.22
## 6                                  Nintendo    23.20     2.26     4.22
## 7                                  Nintendo    11.28     9.14     6.50
## 8                                  Nintendo    13.96     9.18     2.93
## 9                                  Nintendo    14.44     6.94     4.70
## 10                                 Nintendo    26.93     0.63     0.28
## 11                                 Nintendo     9.05    10.95     1.93
## 12                                 Nintendo     9.71     7.47     4.13
## 13                                 Nintendo     9.00     6.18     7.20
## 14                                 Nintendo     8.92     8.03     3.60
## 15                   Microsoft Game Studios    15.00     4.89     0.24
## 16                                 Nintendo     9.01     8.49     2.53
## 17                     Take-Two Interactive     7.02     9.09     0.98
## 18                     Take-Two Interactive     9.43     0.40     0.41
## 19                                 Nintendo    12.78     3.75     3.54
## 20                                 Nintendo     4.74     9.20     4.16
## 21                                 Nintendo     6.38     4.46     6.04
## 22                                 Nintendo    10.83     2.71     4.18
## 23                                 Nintendo     9.54     3.44     3.84
## 24                     Take-Two Interactive     9.66     5.14     0.06
## 25                     Take-Two Interactive     8.41     5.49     0.47
## 26                                 Nintendo     6.06     3.90     5.38
## 27                                 Nintendo     3.43     5.35     5.32
## 28                                 Nintendo     5.51     3.17     5.65
## 29              Sony Computer Entertainment     6.85     5.09     1.87
## 30                               Activision     9.04     4.24     0.13
## 31                                 Nintendo     5.89     5.04     3.12
## 32                               Activision     6.03     5.86     0.36
## 33                               Activision     9.70     3.68     0.11
## 34                                 Nintendo     5.28     4.19     4.35
## 35                               Activision     4.99     5.73     0.65
## 36                               Activision     8.25     4.24     0.07
## 37                               Activision     8.52     3.59     0.08
## 38                               Activision     5.54     5.73     0.49
## 39                     Take-Two Interactive     6.99     4.51     0.30
## 40                                 Nintendo     6.62     2.55     2.66
## 41                                 Nintendo     5.03     4.02     2.69
## 42                               Activision     5.99     4.37     0.48
## 43                     Take-Two Interactive     3.96     6.31     0.38
## 44                                 Nintendo     2.50     3.45     5.33
## 45                   Microsoft Game Studios     7.97     2.81     0.13
## 46                                 Nintendo     6.91     2.85     1.91
## 47                                 Nintendo     4.34     2.71     3.96
## 48                                 Nintendo     4.35     3.49     3.10
## 49              Sony Computer Entertainment     3.01     0.01     1.10
## 50                                 Nintendo     6.06     3.35     1.20
## 51                                 Nintendo     6.16     2.04     2.69
## 52                     Take-Two Interactive     6.76     3.07     0.14
## 53              Sony Computer Entertainment     4.02     3.87     2.54
## 54                                 Nintendo     4.89     3.00     2.14
## 55              Sony Computer Entertainment     2.96     4.82     0.81
## 56                               Activision     4.99     3.64     0.38
## 57                                 Nintendo     5.99     2.15     2.12
## 58                     Take-Two Interactive     4.76     3.69     0.44
## 59                                 Nintendo     4.34     2.65     3.15
## 60                                 Nintendo     5.01     3.07     1.25
## 61                               Activision     6.73     2.56     0.04
## 62                                  Ubisoft     5.95     3.11     0.00
## 63                                 Nintendo     3.66     3.14     2.47
## 64                                 Nintendo     5.55     1.94     2.23
## 65                   Microsoft Game Studios     7.04     1.95     0.08
## 66              Sony Computer Entertainment     3.01     2.47     3.28
## 67                   Microsoft Game Studios     6.65     2.28     0.04
## 68              Sony Computer Entertainment     3.88     3.42     1.69
## 69                                  Ubisoft     5.80     2.85     0.01
## 70                               Activision     4.10     3.63     0.38
## 71                               Activision     5.93     2.36     0.13
## 72                                 Nintendo     4.36     1.71     3.00
## 73                   Microsoft Game Studios     5.70     2.65     0.02
## 74                                 Nintendo     2.03     2.36     4.39
## 75                                 Nintendo     4.40     1.85     1.98
## 76                       Bethesda Softworks     5.05     2.79     0.10
## 77                                 Nintendo     3.54     1.24     3.81
## 78                          Electronic Arts     1.12     6.12     0.06
## 79                   Microsoft Game Studios     6.82     1.53     0.05
## 80                                 Nintendo     1.75     3.47     2.49
## 81                                 Nintendo     3.74     2.24     1.58
## 82                          Electronic Arts     1.06     5.01     0.13
## 83                                 Nintendo     5.80     2.01     0.13
## 84                                 Nintendo     2.79     1.72     3.14
## 85              Sony Computer Entertainment     2.91     2.07     2.73
## 86                          Electronic Arts     0.99     6.42     0.00
## 87                                     Sega     2.57     3.86     0.66
## 88                          Electronic Arts     2.99     3.49     0.22
## 89                               SquareSoft     2.28     1.72     3.63
## 90                                    Atari     7.28     0.45     0.00
## 91                                 Nintendo     2.76     1.72     2.69
## 92                     Take-Two Interactive     2.90     2.81     0.24
## 93                               Activision     2.81     3.48     0.14
## 94                                 Nintendo     4.10     1.89     1.45
## 95                          Electronic Arts     0.66     5.75     0.08
## 96              Sony Computer Entertainment     3.78     2.17     1.31
## 97                                 Nintendo     3.27     1.37     2.43
## 98                                 Nintendo     3.56     2.35     0.98
## 99                                 Nintendo     5.39     1.18     0.70
## 100                              Activision     4.59     2.11     0.01
## 101                              Activision     4.81     1.88     0.00
## 102                         Electronic Arts     4.46     2.11     0.06
## 103                         Electronic Arts     3.27     2.83     0.08
## 104                                 Ubisoft     3.48     2.99     0.00
## 105                         Electronic Arts     2.85     2.89     0.35
## 106                      Bethesda Softworks     2.53     3.27     0.24
## 107             Sony Computer Entertainment     3.27     2.22     1.40
## 108                                Nintendo     3.74     2.14     0.60
## 109                                Nintendo     2.98     1.45     2.26
## 110             Sony Computer Entertainment     3.68     1.75     1.42
## 111                                Nintendo     3.15     2.15     1.28
## 112                                Nintendo     4.41     1.04     1.39
## 113                                Nintendo     4.12     1.77     0.87
## 114                         Electronic Arts     2.71     3.02     0.08
## 115                         Electronic Arts     2.93     2.75     0.17
## 116             Sony Computer Entertainment     3.23     2.35     0.94
## 117                                 Ubisoft     4.05     2.16     0.00
## 118                  Microsoft Game Studios     4.15     1.90     0.06
## 119             Sony Computer Entertainment     2.77     2.75     0.19
## 120                               505 Games     3.45     2.59     0.00
## 121                              Activision     3.11     2.26     0.28
## 122             Sony Computer Entertainment     3.27     2.20     0.21
## 123                         Electronic Arts     0.84     4.30     0.11
## 124                                Nintendo     1.66     2.75     1.60
## 125                                Nintendo     3.74     0.93     1.69
## 126                    Take-Two Interactive     2.79     2.53     0.17
## 127                         Electronic Arts     0.78     4.24     0.07
## 128                                 Ubisoft     2.64     2.52     0.16
## 129                                Nintendo     3.17     1.79     1.03
## 130                  Microsoft Game Studios     4.98     1.30     0.08
## 131                      Bethesda Softworks     2.55     2.60     0.25
## 132                                Nintendo     2.57     1.58     2.06
## 133             Sony Computer Entertainment     3.64     1.20     1.49
## 134                                Nintendo     2.55     1.56     1.29
## 135                  Microsoft Game Studios     4.34     1.34     0.06
## 136                    Take-Two Interactive     3.70     1.95     0.09
## 137                                Nintendo     4.01     1.26     0.87
## 138                                  Capcom     2.47     0.83     2.87
## 139                              Activision     0.08     6.21     0.00
## 140                          GT Interactive     3.11     2.80     0.02
## 141                  Microsoft Game Studios     4.05     1.59     0.07
## 142                  Microsoft Game Studios     3.92     1.73     0.03
## 143                  Microsoft Game Studios     3.54     1.88     0.07
## 144                         Electronic Arts     0.80     4.33     0.05
## 145            Konami Digital Entertainment     2.45     2.01     0.87
## 146                                    Sega     4.47     1.20     0.16
## 147            Konami Digital Entertainment     3.18     1.83     0.78
## 148            Konami Digital Entertainment     2.63     1.71     0.83
## 149                             Square Enix     1.88     0.00     2.33
## 150      Sony Computer Entertainment Europe     2.41     2.18     0.28
## 151             Sony Computer Entertainment     2.80     1.98     0.17
## 152                      Virgin Interactive     1.88     1.47     2.02
## 153                                Nintendo     0.63     0.67     4.35
## 154             Sony Computer Entertainment     2.26     1.89     1.36
## 155                              Activision     2.49     2.07     0.16
## 156                               LucasArts     3.57     1.55     0.00
## 157                               505 Games     3.07     1.91     0.07
## 158                                Nintendo     2.97     0.69     1.81
## 159                                Nintendo     2.95     0.60     1.97
## 160                                 Ubisoft     2.54     1.93     0.21
## 161                                 Ubisoft     3.28     1.64     0.07
## 162                  Microsoft Game Studios     2.99     1.90     0.10
## 163                                Nintendo     3.14     1.24     0.91
## 164                                  Capcom     0.47     0.55     4.13
## 165  Warner Bros. Interactive Entertainment     2.71     1.85     0.11
## 166                    Take-Two Interactive     2.81     2.19     0.00
## 167                                Nintendo     2.62     1.64     0.99
## 168                                Nintendo     3.21     1.11     0.95
## 169                                Nintendo     3.18     1.24     0.94
## 170                   Universal Interactive     2.07     2.29     0.24
## 171                              Activision     2.73     1.83     0.00
## 172             Sony Computer Entertainment     1.85     2.50     0.19
## 173                                Nintendo     2.18     0.96     2.00
## 174                             Square Enix     1.74     1.21     1.87
## 175                                Nintendo     3.02     1.12     1.01
## 176                              SquareSoft     1.62     0.77     2.78
## 177                                 Ubisoft     3.13     1.69     0.03
## 178                         Electronic Arts     1.92     1.08     2.11
## 179                                Nintendo     3.33     0.79     1.09
## 180                              Activision     3.22     1.55     0.01
## 181             Sony Computer Entertainment     2.03     2.37     0.00
## 182                                 Ubisoft     3.11     1.55     0.08
## 183                       Eidos Interactive     2.30     2.46     0.20
## 184                         Electronic Arts     4.26     0.26     0.01
## 185                                Nintendo     0.97     2.11     1.90
## 186                                Nintendo     2.30     1.34     1.27
## 187                             Square Enix     0.65     0.75     3.61
## 188                                Nintendo     2.93     1.25     0.83
## 189                                Nintendo     1.21     2.43     1.03
## 190                                Nintendo     2.49     0.98     1.57
## 191                         Electronic Arts     1.09     3.47     0.03
## 192                                Nintendo     2.10     0.74     2.20
## 193                              Activision     2.44     2.16     0.00
## 194                         Electronic Arts     1.98     2.23     0.13
## 195                                Nintendo     2.71     0.61     1.70
## 196                  Microsoft Game Studios     3.22     1.69     0.00
## 197                               RedOctane     3.81     0.63     0.00
## 198                  Microsoft Game Studios     3.59     1.08     0.05
## 199                                    Sega     1.63     2.45     0.44
## 200                                  Capcom     1.96     1.41     1.08
## 201                                Nintendo     1.85     1.80     0.95
## 202                                Nintendo     3.40     1.30     0.15
## 203                         Electronic Arts     0.61     3.28     0.06
## 204                      Virgin Interactive     2.05     1.16     1.11
## 205                    Take-Two Interactive     1.70     1.99     0.16
## 206                              Activision     3.42     1.38     0.02
## 207                       Eidos Interactive     2.79     1.89     0.00
## 208             Sony Computer Entertainment     3.36     1.36     0.07
## 209                              Activision     3.49     0.01     0.01
## 210                                Nintendo     3.05     1.17     0.29
## 211                                Nintendo     1.83     1.19     1.54
## 212                      Bethesda Softworks     3.40     0.99     0.09
## 213             Sony Computer Entertainment     2.31     1.72     0.12
## 214                         Electronic Arts     3.98     0.26     0.01
## 215                                Nintendo     2.91     0.99     0.89
## 216                                  Capcom     0.00     0.00     4.87
## 217                                Nintendo     2.60     1.08     0.81
## 218                                Nintendo     2.62     0.60     1.52
## 219                              Activision     2.57     1.68     0.00
## 220                                 Ubisoft     1.91     2.00     0.09
## 221             Sony Computer Entertainment     2.74     1.33     0.12
## 222             Sony Computer Entertainment     2.57     1.57     0.44
## 223                               LucasArts     2.83     1.48     0.00
## 224                                   Atari     2.36     2.10     0.02
## 225  Warner Bros. Interactive Entertainment     2.99     1.27     0.04
## 226             Sony Computer Entertainment     1.88     2.00     0.07
## 227                           Vivendi Games     1.73     2.19     0.00
## 228                              Activision     3.05     1.41     0.02
## 229                         Electronic Arts     1.94     1.95     0.08
## 230                       Eidos Interactive     2.29     1.97     0.13
## 231                                Nintendo     1.82     1.12     1.32
## 232             Sony Computer Entertainment     2.07     1.71     0.08
## 233                                Nintendo     2.42     0.91     1.15
## 234                                Nintendo     2.60     0.99     0.89
## 235                              Activision     3.04     1.11     0.00
## 236                                Nintendo     1.80     1.39     1.11
## 237                  Microsoft Game Studios     2.08     1.97     0.06
## 238                                    Sega     1.87     1.96     0.22
## 239                         Electronic Arts     4.18     0.26     0.01
## 240                              Activision     3.19     0.91     0.01
## 241                              Activision     4.21     0.24     0.00
## 242                         Electronic Arts     3.63     0.24     0.01
## 243                  Microsoft Game Studios     2.78     1.27     0.03
## 244                              Activision     2.71     1.51     0.03
## 245                        Enix Corporation     0.20     0.14     4.10
## 246                              Activision     1.61     2.00     0.15
## 247             Sony Computer Entertainment     2.71     1.29     0.02
## 248                                Nintendo     1.54     1.18     1.46
## 249                                Nintendo     2.52     1.11     0.46
## 250                              Activision     2.66     1.29     0.01
## 251            Konami Digital Entertainment     0.10     2.39     1.05
## 252                    Take-Two Interactive     2.82     1.03     0.13
## 253                                Nintendo     2.19     0.50     1.61
## 254                         Electronic Arts     2.03     1.79     0.08
## 255                                 Ubisoft     2.64     1.33     0.01
## 256                              Activision     1.56     1.93     0.19
## 257             Sony Computer Entertainment     1.74     1.72     0.14
## 258                                    Sega     3.03     0.91     0.26
## 259                             Square Enix     2.20     0.58     1.38
## 260                                Nintendo     2.09     1.31     0.62
## 261                                Nintendo     2.11     1.16     0.73
## 262      Sony Computer Entertainment Europe     1.48     2.02     0.14
## 263                                   Atari     4.00     0.26     0.00
## 264                              Activision     2.77     1.11     0.00
## 265                         Electronic Arts     0.58     3.02     0.04
## 266                  Microsoft Game Studios     2.51     1.24     0.11
## 267                      Namco Bandai Games     3.00     1.11     0.05
## 268                       Eidos Interactive     2.24     1.31     0.07
## 269            Konami Digital Entertainment     1.46     0.00     0.83
## 270                                 Ubisoft     1.41     2.01     0.10
## 271                      Bethesda Softworks     2.51     1.32     0.01
## 272                         Electronic Arts     0.92     2.89     0.01
## 273             Sony Computer Entertainment     2.45     1.01     0.00
## 274                              Activision     1.70     2.27     0.00
## 275                         Electronic Arts     0.78     2.55     0.04
## 276             Sony Computer Entertainment     0.88     2.30     0.20
## 277             Sony Computer Entertainment     1.28     1.82     0.57
## 278                                 Ubisoft     2.25     1.47     0.04
## 279                         Electronic Arts     0.84     2.78     0.02
## 280                                  Palcom     3.38     0.44     0.31
## 281                                  Capcom     2.03     1.04     0.58
## 282                                Nintendo     2.04     0.48     1.57
## 283                      Hasbro Interactive     3.79     0.27     0.00
## 284                         Electronic Arts     3.36     0.21     0.01
## 285                           Vivendi Games     4.03     0.00     0.09
## 286                                Nintendo     1.65     0.61     1.76
## 287                         Electronic Arts     0.71     2.48     0.03
## 288                                  Capcom     1.42     0.51     2.10
## 289                              Activision     2.57     1.52     0.00
## 290                         Electronic Arts     1.10     2.15     0.21
## 291             Sony Computer Entertainment     2.32     0.04     0.04
## 292            Konami Digital Entertainment     0.12     2.26     0.90
## 293                      Bethesda Softworks     2.66     1.03     0.04
## 294                  Microsoft Game Studios     2.35     1.27     0.03
## 295                    Take-Two Interactive     2.12     1.47     0.05
## 296                                 Ubisoft     1.40     1.90     0.11
## 297             Sony Computer Entertainment     2.28     1.55     0.16
## 298                      Namco Bandai Games     1.68     1.51     0.51
## 299                                 Ubisoft     1.13     2.18     0.10
## 300                                Nintendo     2.78     0.58     0.64
## 301                                Nintendo     1.22     0.28     2.46
## 302                      Namco Bandai Games     2.08     1.35     0.00
## 303                         Electronic Arts     2.67     0.87     0.05
## 304                      Namco Bandai Games     1.02     2.13     0.23
## 305                                 Ubisoft     1.19     2.07     0.08
## 306  Warner Bros. Interactive Entertainment     1.53     1.69     0.10
## 307                                Nintendo     2.03     1.16     0.37
## 308                      Bethesda Softworks     2.15     1.13     0.07
## 309                                Nintendo     0.90     1.76     0.92
## 310                                Nintendo     1.97     0.76     1.07
## 311                         Electronic Arts     2.09     1.35     0.06
## 312                              Activision     2.29     1.17     0.01
## 313                                Nintendo     0.68     0.48     2.62
## 314                      Bethesda Softworks     1.16     2.12     0.00
## 315                    Take-Two Interactive     2.49     0.66     0.03
## 316                      Namco Bandai Games     0.93     1.94     0.31
## 317                        Enix Corporation     0.10     0.00     3.77
## 318             Sony Computer Entertainment     1.53     1.60     0.06
## 319                                Nintendo     1.44     1.41     0.73
## 320            Konami Digital Entertainment     0.16     1.89     1.12
## 321             Sony Computer Entertainment     2.13     1.12     0.10
## 322             Sony Computer Entertainment     2.12     1.44     0.22
## 323                                Nintendo     2.21     0.96     0.54
## 324                              Activision     1.78     1.43     0.05
## 325                                Nintendo     0.86     1.56     1.05
## 326                                 Ubisoft     1.35     1.70     0.15
## 327                                Nintendo     1.05     1.91     0.41
## 328                      Virgin Interactive     1.82     1.24     0.47
## 329                                Nintendo     2.23     0.47     0.81
## 330                              Activision     2.40     1.01     0.00
## 331                         Electronic Arts     2.03     1.56     0.00
## 332             Sony Computer Entertainment     1.40     1.39     0.10
## 333                         Electronic Arts     1.37     2.00     0.14
## 334                                    Sega     1.12     1.87     0.27
## 335                       Eidos Interactive     1.30     0.77     1.54
## 336                                Nintendo     1.95     0.86     0.59
## 337             Sony Computer Entertainment     1.93     1.58     0.00
## 338                                 Ubisoft     1.33     1.68     0.13
## 339                         Electronic Arts     0.58     2.48     0.04
## 340                                Nintendo     1.49     0.73     1.38
## 341                                Nintendo     0.00     0.00     3.67
## 342                              Activision     2.13     1.18     0.01
## 343                         Electronic Arts     2.04     1.28     0.02
## 344                         Electronic Arts     1.58     1.59     0.08
## 345                    Take-Two Interactive     1.65     1.21     0.00
## 346                                Nintendo     1.87     1.13     0.55
## 347             Sony Computer Entertainment     2.53     0.81     0.06
## 348             Sony Computer Entertainment     2.08     1.09     0.15
## 349                                Nintendo     2.23     0.68     0.66
## 350            Konami Digital Entertainment     0.05     0.00     0.64
## 351                                  Capcom     2.08     0.83     0.46
## 352                              Activision     2.32     0.96     0.00
## 353                         Electronic Arts     0.60     2.45     0.05
## 354                               LucasArts     1.93     1.22     0.03
## 355                      Virgin Interactive     2.05     1.40     0.00
## 356                         Electronic Arts     2.02     1.17     0.00
## 357                                Nintendo     2.38     0.67     0.46
## 358                         Electronic Arts     1.35     1.55     0.17
## 359                               LucasArts     2.18     1.02     0.03
## 360                                 Ubisoft     1.88     1.39     0.00
## 361                               505 Games     1.60     1.49     0.10
## 362                                     THQ     2.01     1.35     0.06
## 363                         Fox Interactive     1.57     1.79     0.00
## 364                    Take-Two Interactive     1.56     1.40     0.07
## 365             Sony Computer Entertainment     1.23     1.77     0.05
## 366                       Eidos Interactive     1.66     1.58     0.12
## 367                         Electronic Arts     1.90     1.13     0.10
## 368                       Eidos Interactive     1.98     1.14     0.01
## 369                                     THQ     1.96     1.33     0.00
## 370                         Electronic Arts     0.71     2.39     0.02
## 371             Sony Computer Entertainment     2.14     1.21     0.01
## 372                         Electronic Arts     2.66     0.49     0.05
## 373                                Nintendo     1.17     0.50     1.75
## 374                                 Ubisoft     2.27     0.90     0.00
## 375                                Nintendo     1.64     0.38     1.42
## 376                                  Capcom     2.11     0.93     0.12
## 377                                 Ubisoft     2.85     0.38     0.03
## 378                         Electronic Arts     0.59     2.36     0.04
## 379                         Electronic Arts     1.30     1.42     0.27
## 380                       Eidos Interactive     2.20     0.95     0.02
## 381                         Electronic Arts     2.15     1.01     0.02
## 382                         Electronic Arts     2.10     1.01     0.04
## 383                                    Sega     1.21     1.62     0.27
## 384                              Activision     2.10     1.01     0.01
## 385                                Nintendo     0.59     1.79     0.73
## 386                                  Capcom     0.00     0.00     3.44
## 387                    Take-Two Interactive     2.40     0.71     0.03
## 388                      Namco Bandai Games     1.55     1.27     0.33
## 389                              SquareSoft     0.86     0.00     2.55
## 390                    Take-Two Interactive     1.13     2.07     0.00
## 391            Konami Digital Entertainment     1.09     1.36     0.49
## 392                              Activision     1.75     1.20     0.02
## 393                                Nintendo     1.73     0.69     0.59
## 394                         Electronic Arts     0.46     2.28     0.05
## 395             Sony Computer Entertainment     1.83     1.05     0.06
## 396             Sony Computer Entertainment     1.56     1.47     0.19
## 397                                 Ubisoft     0.81     1.99     0.07
## 398  Warner Bros. Interactive Entertainment     2.04     1.02     0.00
## 399                              Activision     2.14     0.92     0.00
## 400                   Acclaim Entertainment     2.47     0.76     0.00
## 401                                Nintendo     1.90     0.67     0.73
## 402                                 Ubisoft     0.88     1.70     0.10
## 403                                     THQ     1.63     1.53     0.00
## 404                                Nintendo     0.00     0.99     2.32
## 405                         Electronic Arts     1.45     1.29     0.12
## 406             Sony Computer Entertainment     1.44     1.01     0.57
## 407                                  Capcom     0.27     0.21     2.79
## 408                               LucasArts     1.47     1.39     0.03
## 409                                Nintendo     1.40     0.91     0.74
## 410                    Take-Two Interactive     1.99     1.05     0.05
## 411                                 Ubisoft     1.90     1.11     0.01
## 412                         Electronic Arts     1.50     1.28     0.05
## 413                                Nintendo     0.09     0.00     3.18
## 414                  Microsoft Game Studios     2.61     0.33     0.00
## 415                              Activision     1.89     1.05     0.02
## 416                                Nintendo     0.60     1.57     0.82
## 417             Sony Computer Entertainment     0.50     1.58     0.31
## 418                         Electronic Arts     0.89     2.12     0.00
## 419                                Nintendo     1.35     1.11     0.46
## 420             Sony Computer Entertainment     0.95     1.30     0.77
## 421                         Electronic Arts     2.34     0.30     0.00
## 422             Sony Computer Entertainment     0.72     1.67     0.40
## 423                  Microsoft Game Studios     1.91     1.00     0.03
## 424                         Electronic Arts     1.72     1.33     0.00
## 425                                Nintendo     1.18     0.89     0.94
## 426                                     THQ     1.76     1.21     0.07
## 427                                Nintendo     0.73     0.10     2.35
## 428                                Nintendo     2.26     0.72     0.12
## 429                        Enix Corporation     0.00     0.00     3.19
## 430             Sony Computer Entertainment     1.48     1.00     0.04
## 431                                   Atari     1.78     1.12     0.09
## 432                             Square Enix     1.35     0.59     0.80
## 433                               MTV Games     2.15     0.76     0.01
## 434                    Take-Two Interactive     1.27     1.29     0.12
## 435      Sony Computer Entertainment Europe     2.06     0.56     0.38
## 436                                Nintendo     1.92     0.16     0.99
## 437                         Electronic Arts     0.68     0.00     0.00
## 438              Disney Interactive Studios     1.87     0.97     0.00
## 439                              Activision     1.70     1.25     0.02
## 440                                Nintendo     1.06     1.09     0.76
## 441                         Electronic Arts     2.14     0.86     0.00
## 442                                Nintendo     2.31     0.62     0.14
## 443                                    Sega     1.21     1.56     0.06
## 444                        Enix Corporation     0.08     0.00     3.03
## 445                                Nintendo     0.55     0.50     1.93
## 446                      Bethesda Softworks     1.52     1.03     0.10
## 447                                Nintendo     0.90     1.00     1.03
## 448                                 Ubisoft     1.69     0.85     0.14
## 449                                Nintendo     1.40     1.01     0.46
## 450                                  Capcom     0.88     0.94     0.88
## 451                         Electronic Arts     1.99     0.81     0.03
## 452                                   Atari     2.17     0.28     0.55
## 453                         Electronic Arts     2.50     0.16     0.01
## 454                      Namco Bandai Games     1.92     0.45     0.64
## 455                                Nintendo     1.57     0.62     0.55
## 456                         Electronic Arts     1.72     1.21     0.00
## 457  Warner Bros. Interactive Entertainment     1.80     0.97     0.00
## 458                                Nintendo     0.51     1.02     1.40
## 459                         Electronic Arts     1.00     1.82     0.00
## 460                    Take-Two Interactive     1.89     0.88     0.04
## 461  Warner Bros. Interactive Entertainment     1.75     1.01     0.00
## 462                              Activision     1.91     0.84     0.00
## 463                         Electronic Arts     1.94     0.84     0.03
## 464             Sony Computer Entertainment     1.29     1.21     0.06
## 465                                 Ubisoft     1.54     1.33     0.00
## 466                                     THQ     1.94     0.79     0.02
## 467                                 Ubisoft     1.85     1.04     0.00
## 468                                Nintendo     2.03     0.47     0.45
## 469                                     THQ     1.45     1.13     0.07
## 470                         Electronic Arts     0.61     1.85     0.11
## 471             Sony Computer Entertainment     1.40     1.06     0.08
## 472                                 Ubisoft     1.38     1.32     0.02
## 473              Disney Interactive Studios     2.04     0.63     0.12
## 474                    Take-Two Interactive     2.60     0.20     0.01
## 475                                   Atari     1.15     0.00     0.76
## 476                                     N/A     1.57     1.02     0.00
## 477                                Nintendo     1.61     0.51     0.80
## 478                         Electronic Arts     1.67     1.18     0.00
## 479            Konami Digital Entertainment     0.12     1.26     1.16
## 480                                  Capcom     1.36     0.86     0.64
## 481                         Electronic Arts     1.58     1.01     0.00
## 482  Warner Bros. Interactive Entertainment     1.01     1.43     0.05
## 483                                    Sega     1.04     1.37     0.06
## 484                       Eidos Interactive     1.36     1.15     0.04
## 485                         Electronic Arts     1.84     0.80     0.04
## 486                         Electronic Arts     1.33     1.10     0.08
## 487                                Nintendo     1.98     0.58     0.34
## 488             Sony Computer Entertainment     2.22     0.51     0.06
## 489                                     THQ     1.45     1.11     0.04
## 490                                   Atari     2.07     0.77     0.05
## 491                                  Capcom     1.82     0.70     0.15
## 492             Sony Computer Entertainment     1.76     0.68     0.12
## 493                                Nintendo     1.55     0.04     1.19
## 494                              Activision     1.88     0.77     0.00
## 495                         Electronic Arts     0.79     1.92     0.00
## 496                                Nintendo     1.75     0.45     0.62
## 497                  Microsoft Game Studios     1.83     0.79     0.03
## 498                                    Sega     1.54     1.14     0.00
## 499            Konami Digital Entertainment     0.08     1.24     1.13
## 500                                    Sega     1.75     0.86     0.00
## 501             Sony Computer Entertainment     0.99     0.32     1.38
## 502                               505 Games     1.41     1.12     0.05
## 503                              Activision     1.51     1.12     0.01
## 504                                Nintendo     0.86     1.04     0.73
## 505             Sony Computer Entertainment     2.03     0.72     0.02
## 506                                 Ubisoft     1.30     1.26     0.00
## 507                             Codemasters     0.09     2.43     0.12
## 508                         Electronic Arts     2.53     0.15     0.00
## 509                                 Ubisoft     2.09     0.63     0.03
## 510                                 Ubisoft     1.07     1.31     0.06
## 511                      Virgin Interactive     1.37     1.34     0.00
## 512                                Nintendo     1.37     0.51     0.89
## 513                                Nintendo     1.29     0.53     0.98
## 514  Warner Bros. Interactive Entertainment     1.98     0.53     0.00
## 515                         Electronic Arts     2.52     0.09     0.00
## 516                                     THQ     1.32     1.08     0.04
## 517                    Take-Two Interactive     1.65     0.85     0.05
## 518                                Nintendo     1.96     0.67     0.10
## 519                                 Ubisoft     1.87     0.55     0.11
## 520                                     THQ     1.59     1.05     0.04
## 521                   Majesco Entertainment     1.51     1.03     0.00
## 522                                 Red Orb     0.02     2.79     0.00
## 523                         Electronic Arts     1.28     1.04     0.07
## 524                         Electronic Arts     0.71     1.46     0.06
## 525                                 Ubisoft     1.32     1.19     0.00
## 526                                     THQ     1.32     1.06     0.04
## 527             Sony Computer Entertainment     0.29     0.20     2.13
## 528             Sony Computer Entertainment     1.96     0.72     0.00
## 529                                     THQ     1.19     1.15     0.04
## 530             Sony Computer Entertainment     1.28     0.98     0.07
## 531                        Enix Corporation     0.00     0.00     2.78
## 532                          GT Interactive     1.98     0.70     0.00
## 533                                Nintendo     0.46     0.29     1.96
## 534                         Electronic Arts     2.19     0.22     0.00
## 535             Sony Computer Entertainment     1.68     0.74     0.00
## 536             Sony Computer Entertainment     1.44     0.83     0.26
## 537                         Electronic Arts     1.05     1.23     0.03
## 538                              Activision     1.35     1.13     0.00
## 539                         Electronic Arts     0.89     1.43     0.00
## 540  Warner Bros. Interactive Entertainment     1.50     0.80     0.00
## 541                         Electronic Arts     1.41     1.12     0.00
## 542             Sony Computer Entertainment     1.45     0.86     0.09
## 543                               LucasArts     1.74     0.77     0.00
## 544                  Microsoft Game Studios     1.61     0.90     0.00
## 545                                Nintendo     1.45     0.07     1.10
## 546                                     THQ     1.25     1.14     0.07
## 547                                   Atari     2.56     0.17     0.00
## 548                                Nintendo     1.43     0.54     0.71
## 549                      Namco Bandai Games     1.20     0.97     0.17
## 550                                Nintendo     1.02     0.36     1.13
## 551                                Nintendo     1.33     0.31     1.04
## 552                                    Sega     1.21     1.19     0.04
## 553                         Electronic Arts     0.41     1.84     0.05
## 554                                Nintendo     1.75     0.52     0.33
## 555                      Virgin Interactive     0.99     0.48     1.09
## 556                                Nintendo     1.25     0.53     0.87
## 557                    Take-Two Interactive     1.52     0.92     0.02
## 558                              Activision     1.49     0.92     0.02
## 559                         Electronic Arts     2.42     0.11     0.00
## 560                               LucasArts     1.85     0.64     0.01
## 561             Sony Computer Entertainment     0.89     1.33     0.08
## 562                         Electronic Arts     2.38     0.12     0.00
## 563                         Electronic Arts     1.23     1.11     0.00
## 564                                 Level 5     0.00     0.00     2.68
## 565                     Arena Entertainment     1.95     0.63     0.00
## 566                                Nintendo     1.63     0.51     0.35
## 567                                Nintendo     0.28     1.39     0.68
## 568                              Activision     1.48     0.92     0.01
## 569                         Electronic Arts     1.44     1.09     0.00
## 570                  Microsoft Game Studios     1.99     0.58     0.00
## 571                              Activision     1.78     0.63     0.00
## 572                         Electronic Arts     0.43     2.05     0.00
## 573              Disney Interactive Studios     1.59     0.80     0.00
## 574                                 Ubisoft     1.15     1.11     0.00
## 575                                Nintendo     0.00     0.00     2.65
## 576                         Electronic Arts     0.69     1.40     0.04
## 577                                Nintendo     2.00     0.50     0.12
## 578                         Electronic Arts     0.86     1.11     0.01
## 579                             Square Enix     0.78     0.73     0.89
## 580                    Take-Two Interactive     2.00     0.47     0.02
## 581                         Electronic Arts     1.47     0.93     0.00
## 582                                    Sega     2.15     0.12     0.00
## 583                  Microsoft Game Studios     1.54     0.80     0.04
## 584                    Take-Two Interactive     2.31     0.14     0.01
## 585             Sony Computer Entertainment     0.76     1.09     0.12
## 586                         Electronic Arts     0.59     1.79     0.01
## 587                         Electronic Arts     1.56     0.80     0.04
## 588                         Electronic Arts     0.90     1.22     0.04
## 589                                    Sega     1.86     0.55     0.11
## 590             Sony Computer Entertainment     1.70     0.44     0.06
## 591                         Electronic Arts     2.03     0.21     0.00
## 592                                Nintendo     1.05     1.05     0.24
## 593                         Electronic Arts     0.48     1.63     0.04
## 594                                Nintendo     0.62     0.82     0.96
## 595                                     THQ     1.40     0.88     0.03
## 596                               LucasArts     1.53     0.81     0.00
## 597             Sony Computer Entertainment     1.31     0.74     0.31
## 598                         Electronic Arts     2.14     0.08     0.00
## 599                                  Capcom     0.37     0.27     1.75
## 600             Sony Computer Entertainment     0.93     1.10     0.08
## 601                                Nintendo     0.99     0.52     0.92
## 602                                    Sega     1.70     0.59     0.21
## 603                        Enix Corporation     0.15     0.00     2.41
## 604                    Take-Two Interactive     1.04     1.22     0.03
## 605                         Electronic Arts     2.11     0.22     0.00
## 606                         Electronic Arts     1.76     0.55     0.03
## 607                                Nintendo     1.21     0.57     0.70
## 608             Sony Computer Entertainment     0.64     1.22     0.01
## 609                         Electronic Arts     2.21     0.12     0.00
## 610                                   Atari     2.36     0.14     0.00
## 611                   Acclaim Entertainment     1.13     1.12     0.06
## 612                                Nintendo     0.26     1.65     0.33
## 613                    Take-Two Interactive     2.10     0.19     0.00
## 614                                Nintendo     1.55     0.75     0.16
## 615                              Activision     1.48     0.83     0.00
## 616                                  Capcom     0.49     0.00     0.52
## 617            Konami Digital Entertainment     1.11     0.85     0.29
## 618            Konami Digital Entertainment     0.13     0.07     0.26
## 619                                Nintendo     1.28     0.14     1.08
## 620                              Activision     2.29     0.02     0.00
## 621                    Take-Two Interactive     1.84     0.56     0.00
## 622                            Midway Games     1.81     0.52     0.00
## 623                            Midway Games     1.47     0.77     0.00
## 624             Sony Computer Entertainment     1.03     0.81     0.26
## 625                       Eidos Interactive     1.15     1.14     0.06
## 626                                Nintendo     1.13     0.36     0.92
## 627              Disney Interactive Studios     1.38     0.84     0.00
## 628                         Electronic Arts     1.93     0.33     0.00
## 629                    Take-Two Interactive     1.73     0.43     0.05
## 630                                     THQ     0.86     1.04     0.18
## 631             Sony Computer Entertainment     1.15     0.84     0.10
## 632                    Take-Two Interactive     1.47     0.54     0.01
## 633                              SquareSoft     0.00     0.00     2.43
## 634                              SquareSoft     0.93     0.12     1.34
## 635                    Take-Two Interactive     1.56     0.53     0.05
## 636             Sony Computer Entertainment     2.12     0.25     0.00
## 637                         Electronic Arts     1.07     1.19     0.00
## 638                                 Red Orb     1.52     0.82     0.00
## 639  Warner Bros. Interactive Entertainment     1.28     0.93     0.00
## 640                         Electronic Arts     0.50     1.50     0.05
## 641                              Activision     1.46     0.74     0.00
## 642                         Electronic Arts     2.08     0.08     0.00
## 643                                Nintendo     1.27     0.32     0.78
## 644                                    Sega     1.26     0.61     0.46
## 645                                 Ubisoft     1.56     0.60     0.02
## 646                                     THQ     1.65     0.57     0.00
## 647                             Square Enix     0.60     1.26     0.08
## 648                         Electronic Arts     0.87     0.97     0.00
## 649                                   Atari     1.63     0.22     0.51
## 650            Konami Digital Entertainment     0.29     1.17     0.54
## 651             Sony Computer Entertainment     2.07     0.26     0.00
## 652                                  Capcom     0.81     0.76     0.70
## 653                         Electronic Arts     0.69     0.00     0.04
## 654                  Microsoft Game Studios     1.44     0.70     0.04
## 655                                     JVC     2.10     0.24     0.00
## 656                                Nintendo     0.77     0.18     1.42
## 657                         Electronic Arts     2.30     0.10     0.00
## 658            Konami Digital Entertainment     2.15     0.18     0.00
## 659                      Hasbro Interactive     1.49     0.81     0.00
## 660                   Acclaim Entertainment     1.78     0.53     0.00
## 661                               RedOctane     1.67     0.61     0.03
## 662                         Electronic Arts     2.04     0.15     0.00
## 663                                     THQ     1.94     0.39     0.03
## 664            Konami Digital Entertainment     1.16     0.91     0.00
## 665                             Deep Silver     1.48     0.69     0.00
## 666                           Vivendi Games     2.28     0.02     0.08
## 667                                     THQ     0.96     1.08     0.04
## 668                         Electronic Arts     2.18     0.01     0.00
## 669                              Activision     1.25     0.86     0.01
## 670                               505 Games     1.74     0.45     0.00
## 671                         Electronic Arts     2.03     0.13     0.00
## 672                                Nintendo     0.69     0.14     1.48
## 673                    Take-Two Interactive     1.68     0.45     0.01
## 674                                Nintendo     1.39     0.48     0.40
## 675                       Eidos Interactive     0.00     0.00     2.34
## 676                  Microsoft Game Studios     1.73     0.43     0.02
## 677                                     THQ     0.92     0.00     0.01
## 678                                Nintendo     1.15     0.55     0.47
## 679                               LucasArts     1.51     0.61     0.00
## 680                                  Capcom     1.08     0.70     0.34
## 681                    Take-Two Interactive     1.95     0.15     0.00
## 682                  Microsoft Game Studios     1.38     0.72     0.02
## 683                                 Ubisoft     1.18     0.90     0.00
## 684                                Nintendo     0.78     0.40     1.06
## 685                    Take-Two Interactive     0.79     1.35     0.04
## 686                         Electronic Arts     0.85     1.06     0.09
## 687                         Electronic Arts     1.58     0.64     0.00
## 688                              SquareSoft     0.28     0.00     2.02
## 689                                  NCSoft     0.96     1.07     0.00
## 690                             989 Studios     1.65     0.46     0.10
## 691                                Nintendo     1.12     0.41     0.64
## 692                                Nintendo     0.51     0.45     1.21
## 693  Warner Bros. Interactive Entertainment     1.07     0.80     0.04
## 694                       Eidos Interactive     0.91     1.25     0.00
## 695                                 Level 5     0.00     0.00     2.29
## 696                               LucasArts     1.02     0.90     0.00
## 697                         Electronic Arts     1.38     0.80     0.00
## 698            Konami Digital Entertainment     0.30     1.27     0.46
## 699                                Nintendo     0.51     0.12     1.63
## 700                         Electronic Arts     0.38     0.07     0.01
## 701  Warner Bros. Interactive Entertainment     1.07     0.99     0.00
## 702                         Electronic Arts     1.27     0.81     0.00
## 703                                Nintendo     0.94     0.53     0.62
## 704                             Codemasters     0.07     2.00     0.02
## 705                             Deep Silver     1.08     0.73     0.15
## 706                                Nintendo     1.22     0.10     0.91
## 707                                Nintendo     0.90     0.73     0.54
## 708                                    Sega     1.34     0.60     0.00
## 709                                 Ubisoft     0.60     1.25     0.06
## 710                         Electronic Arts     1.28     0.77     0.00
## 711                                  Capcom     0.62     0.44     1.06
## 712                             UEP Systems     1.52     0.46     0.20
## 713                                Nintendo     1.48     0.25     0.46
## 714                         Electronic Arts     1.93     0.15     0.00
## 715             Sony Computer Entertainment     1.23     0.63     0.04
## 716                              Activision     1.40     0.53     0.02
## 717                                    Sega     1.19     0.71     0.22
## 718                                    Sega     1.05     0.91     0.04
## 719                                 Ubisoft     1.52     0.54     0.00
## 720                              Activision     1.17     0.84     0.00
## 721                                Nintendo     1.25     0.62     0.18
## 722                                 Ubisoft     1.48     0.55     0.00
## 723                           Vivendi Games     1.29     0.83     0.00
## 724                             Square Enix     0.51     0.50     0.91
## 725                         Electronic Arts     1.98     0.06     0.00
## 726            Konami Digital Entertainment     1.74     0.25     0.21
## 727            Konami Digital Entertainment     1.09     0.85     0.00
## 728                    Take-Two Interactive     1.05     0.72     0.10
## 729                                 Ubisoft     0.88     1.03     0.00
## 730                                Nintendo     0.65     0.40     1.05
## 731  Warner Bros. Interactive Entertainment     1.24     0.79     0.00
## 732                                Nintendo     1.00     0.63     0.45
## 733                                  Capcom     1.32     0.56     0.14
## 734                                 Ubisoft     0.55     1.19     0.14
## 735                               LucasArts     1.01     0.85     0.00
## 736                                  Capcom     1.06     0.82     0.05
## 737                            Parker Bros.     2.06     0.12     0.00
## 738                              Activision     2.01     0.02     0.00
## 739                  Microsoft Game Studios     1.21     0.79     0.01
## 740                         Electronic Arts     1.78     0.24     0.00
## 741                      Namco Bandai Games     0.15     0.00     2.05
## 742                                Nintendo     1.11     0.51     0.34
## 743                         Electronic Arts     1.03     0.96     0.00
## 744                              Activision     1.40     0.59     0.00
## 745                    Take-Two Interactive     1.45     0.54     0.02
## 746              Disney Interactive Studios     1.06     0.90     0.00
## 747                              Activision     1.68     0.44     0.00
## 748                                Nintendo     0.87     0.17     1.10
## 749                                Nintendo     1.04     0.72     0.30
## 750                         Electronic Arts     1.54     0.25     0.00
## 751            Konami Digital Entertainment     0.34     0.96     0.55
## 752                                     THQ     1.17     0.77     0.02
## 753            Konami Digital Entertainment     0.00     0.00     2.17
## 754                                     THQ     1.92     0.20     0.00
## 755                         Electronic Arts     0.60     1.42     0.00
## 756                                Nintendo     1.48     0.17     0.47
## 757                                Nintendo     1.60     0.46     0.08
## 758                                Nintendo     0.48     0.11     1.56
## 759                                 Ubisoft     1.29     0.68     0.00
## 760                             Square Enix     1.28     0.67     0.01
## 761                         Electronic Arts     1.23     0.83     0.00
## 762  Warner Bros. Interactive Entertainment     1.67     0.30     0.02
## 763                                    Sega     1.26     0.67     0.02
## 764             Sony Computer Entertainment     1.50     0.55     0.02
## 765                                Nintendo     1.28     0.03     0.73
## 766                                Nintendo     0.14     0.03     1.98
## 767                              Activision     1.21     0.75     0.00
## 768                              Activision     0.81     0.85     0.15
## 769                             Square Enix     0.59     1.05     0.07
## 770                                   Maxis     1.20     0.84     0.00
## 771                                Nintendo     1.47     0.38     0.19
## 772                                Nintendo     0.66     0.00     1.45
## 773                                Nintendo     0.01     0.00     2.13
## 774                                  Imagic     1.99     0.12     0.00
## 775                              Activision     0.52     1.02     0.00
## 776            Konami Digital Entertainment     1.04     0.81     0.00
## 777                              SquareSoft     0.82     0.37     0.89
## 778                                 Ubisoft     1.49     0.46     0.00
## 779                  Microsoft Game Studios     1.37     0.61     0.05
## 780                                Nintendo     0.83     0.33     0.92
## 781                    Take-Two Interactive     1.62     0.26     0.05
## 782                              Activision     1.68     0.40     0.00
## 783                         Electronic Arts     1.68     0.31     0.02
## 784            Konami Digital Entertainment     0.11     1.33     0.40
## 785                              Tecmo Koei     0.63     0.21     1.13
## 786                    Take-Two Interactive     1.44     0.31     0.04
## 787                              SquareSoft     0.94     0.07     1.05
## 788                                Nintendo     0.63     0.05     1.35
## 789                  Microsoft Game Studios     1.54     0.44     0.04
## 790                                     THQ     1.17     0.72     0.00
## 791                         Electronic Arts     0.71     0.94     0.14
## 792  Warner Bros. Interactive Entertainment     1.63     0.31     0.00
## 793                    Take-Two Interactive     1.20     0.60     0.00
## 794                                  Capcom     0.99     0.63     0.29
## 795                     ASCII Entertainment     0.00     0.00     1.96
## 796                    Take-Two Interactive     1.84     0.12     0.01
## 797                                     THQ     1.26     0.60     0.05
## 798  Warner Bros. Interactive Entertainment     0.96     0.67     0.12
## 799                                Nintendo     0.25     0.45     1.33
## 800                                  Capcom     1.16     0.64     0.08
## 801                              Activision     1.77     0.32     0.00
## 802                                     THQ     1.11     0.71     0.00
## 803                             Square Enix     0.89     0.04     1.07
## 804                         Electronic Arts     2.04     0.04     0.00
## 805                                Nintendo     0.97     0.33     0.73
## 806                               MTV Games     1.33     0.56     0.00
## 807                              Activision     0.89     1.08     0.00
## 808                                Nintendo     0.89     0.58     0.46
## 809                          Valve Software     1.41     0.49     0.01
## 810                                Nintendo     0.88     0.44     0.63
## 811                         Electronic Arts     1.77     0.12     0.02
## 812                    Take-Two Interactive     1.54     0.46     0.00
## 813                         Electronic Arts     0.92     0.93     0.00
## 814            Konami Digital Entertainment     1.35     0.52     0.00
## 815             Sony Computer Entertainment     0.36     1.38     0.02
## 816            Konami Digital Entertainment     1.64     0.36     0.00
## 817                                     THQ     1.48     0.39     0.00
## 818            Konami Digital Entertainment     0.46     0.41     0.96
## 819                                Nintendo     1.42     0.09     0.45
## 820                               Mindscape     1.94     0.00     0.00
## 821                                Nintendo     0.71     0.52     0.74
## 822                                     THQ     1.15     0.77     0.04
## 823                      Namco Bandai Games     0.68     0.46     0.79
## 824                             Square Enix     0.63     0.41     0.75
## 825                                 Ubisoft     1.20     0.62     0.04
## 826                      Namco Bandai Games     1.06     0.62     0.13
## 827                         Electronic Arts     1.04     0.79     0.01
## 828                              Infogrames     1.47     0.48     0.05
## 829                    Take-Two Interactive     0.60     0.96     0.13
## 830                         Electronic Arts     1.77     0.06     0.00
## 831                         Electronic Arts     0.63     1.00     0.05
## 832              Disney Interactive Studios     0.89     0.94     0.02
## 833                     Arena Entertainment     1.75     0.25     0.00
## 834             Sony Computer Entertainment     1.74     0.02     0.00
## 835                                 Ubisoft     0.71     1.02     0.00
## 836                         Electronic Arts     0.73     0.91     0.04
## 837                                Nintendo     1.20     0.48     0.29
## 838                  Microsoft Game Studios     1.45     0.41     0.01
## 839                  Microsoft Game Studios     0.48     1.28     0.02
## 840                                Nintendo     1.25     0.61     0.13
## 841                    Take-Two Interactive     1.21     0.63     0.00
## 842                         Electronic Arts     1.57     0.18     0.00
## 843                              Activision     1.82     0.04     0.01
## 844                                 Ubisoft     0.72     1.08     0.00
## 845                                Nintendo     1.15     0.04     0.83
## 846                      Namco Bandai Games     0.75     0.51     0.54
## 847                                 Ubisoft     1.47     0.39     0.00
## 848                         Electronic Arts     1.25     0.58     0.00
## 849                                Nintendo     0.90     0.45     0.54
## 850                         Electronic Arts     0.58     1.04     0.03
## 851                                 Ubisoft     0.99     0.85     0.00
## 852                         Electronic Arts     0.73     0.88     0.08
## 853                                Nintendo     0.52     0.16     1.29
## 854                         Electronic Arts     1.05     0.66     0.00
## 855                            Midway Games     1.48     0.28     0.00
## 856                            Midway Games     0.48     1.27     0.00
## 857                              Activision     0.95     0.64     0.27
## 858                                Nintendo     0.75     0.30     0.90
## 859                         Electronic Arts     1.21     0.64     0.05
## 860                             Square Enix     1.06     0.26     0.53
## 861                         Electronic Arts     0.79     0.88     0.00
## 862                                Nintendo     0.93     0.27     0.75
## 863                         Electronic Arts     0.75     1.09     0.02
## 864                         Electronic Arts     0.73     0.92     0.03
## 865                   Universal Interactive     0.74     0.95     0.00
## 866                                  Capcom     0.71     0.58     0.51
## 867                                   Atari     1.84     0.11     0.00
## 868             Sony Computer Entertainment     0.50     0.50     0.63
## 869      Sony Computer Entertainment Europe     0.18     0.64     0.90
## 870                                Nintendo     0.18     0.23     1.53
## 871                                Nintendo     1.13     0.37     0.41
## 872                  Microsoft Game Studios     0.82     0.93     0.04
## 873                                 Ubisoft     1.09     0.65     0.02
## 874                           Vivendi Games     0.74     1.01     0.00
## 875                                  Capcom     1.12     0.60     0.07
## 876                    Take-Two Interactive     1.26     0.61     0.00
## 877                               LucasArts     1.09     0.77     0.00
## 878                         Electronic Arts     1.69     0.20     0.00
## 879                         Electronic Arts     0.95     0.74     0.00
## 880                                Nintendo     0.78     0.02     1.05
## 881                         Electronic Arts     1.01     0.62     0.02
## 882              Disney Interactive Studios     1.94     0.00     0.00
## 883                                Nintendo     0.96     0.38     0.55
## 884                                     THQ     0.59     1.23     0.00
## 885                         Electronic Arts     0.73     0.89     0.02
## 886                         Electronic Arts     0.49     1.26     0.01
## 887                                   Atari     1.09     0.15     0.65
## 888                              Activision     1.17     0.58     0.00
## 889             Sony Computer Entertainment     1.41     0.42     0.03
## 890                                 Ubisoft     1.42     0.40     0.00
## 891                    Take-Two Interactive     1.22     0.54     0.02
## 892                              Activision     1.00     0.72     0.00
## 893                   Acclaim Entertainment     1.48     0.39     0.00
## 894                                    Sega     0.34     0.26     1.30
## 895                            Midway Games     1.53     0.23     0.00
## 896                              Activision     0.78     0.79     0.04
## 897                                Nintendo     1.06     0.60     0.20
## 898                                Nintendo     0.92     0.53     0.41
## 899                              Activision     1.31     0.43     0.00
## 900                                     THQ     0.76     0.96     0.00
## 901                         Electronic Arts     1.03     0.80     0.00
## 902                                Nintendo     0.62     0.64     0.55
## 903                                     THQ     0.94     0.73     0.00
## 904             Sony Computer Entertainment     0.26     0.16     1.46
## 905                              Activision     1.10     0.55     0.00
## 906                         Electronic Arts     0.73     0.96     0.01
## 907                                Nintendo     0.72     0.16     1.01
## 908                              Activision     0.72     0.75     0.15
## 909             Sony Computer Entertainment     0.66     0.93     0.01
## 910                               LucasArts     1.03     0.75     0.03
## 911                             Square Enix     0.86     0.84     0.01
## 912                                Nintendo     1.48     0.00     0.29
## 913                                Nintendo     0.74     0.62     0.41
## 914                         Electronic Arts     0.86     0.83     0.00
## 915                         Electronic Arts     1.56     0.14     0.00
## 916  Warner Bros. Interactive Entertainment     1.15     0.56     0.00
## 917                            Midway Games     1.28     0.43     0.00
## 918            Konami Digital Entertainment     1.37     0.44     0.00
## 919                            Midway Games     0.92     0.72     0.00
## 920             Sony Computer Entertainment     0.25     0.12     1.48
## 921                         Electronic Arts     0.89     0.69     0.09
## 922                    Take-Two Interactive     1.25     0.27     0.02
## 923              Disney Interactive Studios     1.04     0.66     0.00
## 924                                     THQ     1.42     0.36     0.03
## 925              Disney Interactive Studios     0.47     0.08     0.00
## 926                                Nintendo     0.96     0.53     0.30
## 927                         Electronic Arts     0.22     1.47     0.04
## 928                         Electronic Arts     1.60     0.03     0.00
## 929                                     THQ     0.53     0.16     1.07
## 930                                Nintendo     0.87     0.52     0.41
## 931             Sony Computer Entertainment     1.05     0.53     0.03
## 932                         Electronic Arts     1.75     0.03     0.00
## 933                              Activision     1.12     0.69     0.03
## 934                   Acclaim Entertainment     1.37     0.41     0.04
## 935             Sony Computer Entertainment     0.94     0.44     0.39
## 936             Sony Computer Entertainment     0.00     1.37     0.00
## 937                               LucasArts     1.11     0.56     0.00
## 938                         Electronic Arts     0.91     0.71     0.00
## 939                             Square Enix     0.47     1.03     0.07
## 940                              SquareSoft     0.62     0.42     0.69
## 941             Sony Computer Entertainment     1.33     0.49     0.00
## 942                             Square Enix     1.26     0.18     0.35
## 943                                Nintendo     0.80     0.19     0.83
## 944                    Take-Two Interactive     0.59     0.89     0.06
## 945                                 Unknown     0.00     1.10     0.42
## 946  Warner Bros. Interactive Entertainment     0.77     0.76     0.01
## 947              Disney Interactive Studios     1.32     0.37     0.00
## 948                         Electronic Arts     1.53     0.05     0.00
## 949                                Nintendo     0.83     0.06     0.93
## 950                                 Ubisoft     0.82     0.82     0.00
## 951                                     THQ     1.31     0.49     0.00
## 952             Sony Computer Entertainment     1.33     0.40     0.03
## 953                                Nintendo     0.61     0.34     0.79
## 954                              SquareSoft     0.25     0.07     1.49
## 955                              Activision     0.84     0.70     0.13
## 956                                    Sega     0.92     0.73     0.00
## 957             Sony Computer Entertainment     0.92     0.33     0.52
## 958                              Activision     0.51     0.98     0.06
## 959             Sony Computer Entertainment     1.05     0.47     0.08
## 960                              Activision     0.84     0.76     0.00
## 961                                    Sega     1.24     0.43     0.03
## 962                      Namco Bandai Games     1.73     0.07     0.00
## 963                         Electronic Arts     1.81     0.00     0.00
## 964                      Namco Bandai Games     0.97     0.33     0.35
## 965                         Electronic Arts     1.09     0.53     0.02
## 966            Konami Digital Entertainment     1.05     0.59     0.00
## 967                                    Sega     1.10     0.51     0.12
## 968                                    Sega     0.78     0.44     0.56
## 969                    Take-Two Interactive     0.42     1.08     0.03
## 970             Sony Computer Entertainment     0.88     0.69     0.00
## 971                              Activision     1.00     0.03     0.00
## 972                                    Sega     0.93     0.59     0.21
## 973                         Electronic Arts     1.66     0.00     0.01
## 974                             989 Studios     1.00     0.68     0.00
## 975                    Take-Two Interactive     1.41     0.20     0.03
## 976                  Microsoft Game Studios     0.73     0.90     0.03
## 977                      Bethesda Softworks     0.55     0.86     0.11
## 978                                Nintendo     0.89     0.74     0.07
## 979                                Nintendo     0.92     0.60     0.14
## 980                      Virgin Interactive     1.26     0.39     0.08
## 981                                Nintendo     0.32     0.97     0.36
## 982                    Take-Two Interactive     1.25     0.29     0.00
## 983                                     THQ     1.12     0.58     0.00
## 984             Sony Computer Entertainment     0.39     1.01     0.02
## 985                           Vivendi Games     0.85     0.76     0.00
## 986                                  Square     0.24     0.09     1.33
## 987                                Nintendo     0.63     0.06     1.03
## 988                  Microsoft Game Studios     1.19     0.29     0.24
## 989                             Square Enix     0.23     0.02     1.49
## 990                               LucasArts     1.01     0.60     0.00
## 991              Disney Interactive Studios     1.15     0.45     0.00
## 992                                Nintendo     0.85     0.31     0.56
## 993                   Acclaim Entertainment     1.27     0.42     0.00
## 994                                     THQ     1.07     0.44     0.01
## 995                                     THQ     1.06     0.54     0.00
## 996                                Nintendo     0.93     0.38     0.40
## 997                                    Sega     1.02     0.47     0.20
## 998                                Nintendo     0.53     0.12     1.09
## 999                         Electronic Arts     0.86     0.67     0.00
## 1000                                Ubisoft     1.23     0.46     0.00
## 1001                   Take-Two Interactive     0.86     0.67     0.00
## 1002                                    THQ     1.26     0.47     0.00
## 1003                        Electronic Arts     0.52     0.95     0.00
## 1004                             Activision     0.61     0.87     0.02
## 1005                        Electronic Arts     1.68     0.04     0.00
## 1006                             Activision     1.24     0.45     0.00
## 1007           Konami Digital Entertainment     0.06     0.90     0.53
## 1008                        Electronic Arts     1.25     0.17     0.00
## 1009                            Square Enix     0.45     0.92     0.06
## 1010                                 Capcom     0.94     0.34     0.21
## 1011                               Nintendo     0.79     0.14     0.80
## 1012                               Nintendo     0.70     0.13     0.91
## 1013                     Bethesda Softworks     0.67     0.79     0.00
## 1014                        Electronic Arts     0.35     1.06     0.02
## 1015                 Microsoft Game Studios     1.00     0.53     0.03
## 1016                               Nintendo     0.30     0.56     0.84
## 1017           Konami Digital Entertainment     0.85     0.66     0.01
## 1018                                    THQ     1.25     0.46     0.00
## 1019                            Square Enix     0.90     0.35     0.25
## 1020                              LucasArts     0.72     0.89     0.04
## 1021                     Namco Bandai Games     0.63     0.49     0.45
## 1022                                Ubisoft     0.56     0.81     0.10
## 1023                 Microsoft Game Studios     1.05     0.52     0.03
## 1024                                 Capcom     0.41     0.44     0.72
## 1025                               Nintendo     1.69     0.04     0.00
## 1026                        Electronic Arts     1.66     0.04     0.00
## 1027            Sony Computer Entertainment     0.61     0.78     0.06
## 1028                        Electronic Arts     0.85     0.66     0.00
## 1029     Sony Computer Entertainment Europe     0.43     0.68     0.42
## 1030                            989 Studios     1.48     0.20     0.00
## 1031                        Electronic Arts     0.94     0.62     0.10
## 1032                               Nintendo     0.20     0.14     1.35
## 1033                  Universal Interactive     0.95     0.70     0.00
## 1034                            Square Enix     0.68     0.88     0.01
## 1035                   Take-Two Interactive     0.85     0.66     0.00
## 1036                                Ubisoft     0.35     1.08     0.03
## 1037                             Activision     0.61     0.18     0.00
## 1038                   Take-Two Interactive     1.37     0.18     0.00
## 1039                        Electronic Arts     1.61     0.03     0.00
## 1040                                Ubisoft     0.80     0.21     0.55
## 1041                             Activision     0.41     0.98     0.00
## 1042                     Bethesda Softworks     1.06     0.50     0.01
## 1043                             Activision     0.99     0.64     0.00
## 1044                              MTV Games     1.17     0.39     0.00
## 1045     Sony Computer Entertainment Europe     0.88     0.34     0.32
## 1046                        Electronic Arts     1.09     0.55     0.00
## 1047                               Nintendo     0.00     0.00     1.71
## 1048                                    THQ     1.25     0.39     0.00
## 1049                                Ubisoft     0.70     0.82     0.00
## 1050                             Activision     1.14     0.40     0.00
## 1051                              Mindscape     1.15     0.40     0.00
## 1052                        Electronic Arts     0.23     0.24     0.00
## 1053                                  Valve     0.83     0.60     0.02
## 1054                              Banpresto     0.00     0.00     1.69
## 1055                        Electronic Arts     1.41     0.05     0.00
## 1056                        Electronic Arts     0.59     0.87     0.00
## 1057                            Hello Games     0.63     0.76     0.03
## 1058                            D3Publisher     0.68     0.82     0.00
## 1059                       Activision Value     1.58     0.00     0.00
## 1060            Sony Computer Entertainment     1.22     0.34     0.04
## 1061                   Take-Two Interactive     0.72     0.65     0.04
## 1062            Sony Computer Entertainment     0.94     0.64     0.00
## 1063                             Activision     0.49     0.87     0.07
## 1064                                    THQ     1.37     0.28     0.03
## 1065                                    THQ     1.10     0.48     0.04
## 1066                        Electronic Arts     0.87     0.66     0.08
## 1067                             Infogrames     1.52     0.12     0.00
## 1068                              505 Games     0.79     0.65     0.08
## 1069                                 Capcom     0.98     0.42     0.22
## 1070                               Nintendo     0.48     1.12     0.00
## 1071 Warner Bros. Interactive Entertainment     1.40     0.16     0.00
## 1072                        Electronic Arts     0.79     0.70     0.01
## 1073                     Oxygen Interactive     0.82     0.64     0.00
## 1074            Sony Computer Entertainment     1.58     0.06     0.00
## 1075                                   Sega     0.92     0.60     0.01
## 1076                                    THQ     0.88     0.54     0.02
## 1077                               Nintendo     0.59     0.24     0.82
## 1078                     Namco Bandai Games     0.38     0.87     0.33
## 1079                   Take-Two Interactive     0.98     0.52     0.00
## 1080                               Nintendo     0.81     0.23     0.52
## 1081                        Electronic Arts     1.67     0.00     0.00
## 1082                               Nintendo     1.18     0.27     0.17
## 1083                     Namco Bandai Games     0.97     0.40     0.14
## 1084                              LucasArts     0.90     0.46     0.00
## 1085                        Electronic Arts     0.93     0.52     0.00
## 1086                        Electronic Arts     1.58     0.05     0.00
## 1087                             Activision     1.22     0.39     0.00
## 1088                                 Capcom     0.91     0.30     0.42
## 1089                             Activision     1.09     0.49     0.02
## 1090                                    THQ     0.59     0.95     0.03
## 1091                 Microsoft Game Studios     0.97     0.59     0.04
## 1092                        Electronic Arts     0.96     0.42     0.08
## 1093                           Midway Games     1.13     0.32     0.00
## 1094                        Electronic Arts     1.35     0.09     0.00
## 1095                        Electronic Arts     0.81     0.58     0.01
## 1096                             Activision     0.83     0.66     0.00
## 1097                                    THQ     1.08     0.45     0.00
## 1098     Sony Computer Entertainment Europe     0.45     0.90     0.05
## 1099                                    THQ     0.45     1.02     0.00
## 1100                                   Sega     1.00     0.30     0.31
## 1101                        Electronic Arts     0.78     0.61     0.06
## 1102                                Ubisoft     0.93     0.56     0.00
## 1103                           Midway Games     0.81     0.63     0.00
## 1104                            Deep Silver     1.01     0.50     0.01
## 1105                        Electronic Arts     1.25     0.15     0.03
## 1106 Warner Bros. Interactive Entertainment     0.90     0.61     0.00
## 1107                                  Atari     0.96     0.12     0.54
## 1108                     Namco Bandai Games     0.65     0.45     0.34
## 1109                                  Atari     1.54     0.10     0.00
## 1110                               Nintendo     0.58     0.21     0.79
## 1111                               Nintendo     0.90     0.11     0.60
## 1112                               Nintendo     1.06     0.38     0.15
## 1113                              LucasArts     1.21     0.30     0.00
## 1114                        Electronic Arts     0.76     0.69     0.02
## 1115            Sony Computer Entertainment     0.57     0.72     0.06
## 1116                       Enix Corporation     0.00     0.00     1.65
## 1117                        Electronic Arts     0.90     0.54     0.04
## 1118                               Nintendo     0.80     0.05     0.76
## 1119                        Electronic Arts     1.09     0.37     0.02
## 1120                                  Atari     1.52     0.10     0.00
## 1121                Red Storm Entertainment     0.93     0.63     0.00
## 1122                                 Capcom     0.74     0.26     0.61
## 1123                        Electronic Arts     0.80     0.63     0.00
## 1124                        Electronic Arts     1.44     0.15     0.00
## 1125                                Ubisoft     0.54     0.88     0.00
## 1126                                Ubisoft     0.80     0.69     0.01
## 1127                                   Sega     1.54     0.02     0.00
## 1128            Sony Computer Entertainment     0.52     0.80     0.06
## 1129                               Nintendo     0.78     0.25     0.56
## 1130                        Electronic Arts     1.18     0.34     0.00
## 1131                   Take-Two Interactive     1.35     0.11     0.00
## 1132                             Activision     0.58     0.81     0.00
## 1133            Sony Computer Entertainment     0.71     0.48     0.32
## 1134                        Electronic Arts     1.32     0.09     0.00
## 1135                   Take-Two Interactive     0.86     0.62     0.01
## 1136                 Microsoft Game Studios     0.45     0.95     0.02
## 1137                             Activision     0.80     0.63     0.01
## 1138                 Microsoft Game Studios     1.02     0.46     0.00
## 1139                               Nintendo     1.01     0.11     0.45
## 1140 Warner Bros. Interactive Entertainment     0.59     0.76     0.01
## 1141                        Electronic Arts     0.90     0.61     0.00
## 1142                             Activision     0.68     0.56     0.12
## 1143                        Electronic Arts     0.99     0.41     0.00
## 1144                            Square Enix     0.30     0.02     1.27
## 1145                        Electronic Arts     0.79     0.62     0.00
## 1146                               Nintendo     0.66     0.27     0.65
## 1147           Konami Digital Entertainment     0.00     0.00     1.61
## 1148                               Nintendo     0.98     0.38     0.20
## 1149            Sony Computer Entertainment     0.00     1.18     0.00
## 1150                     Bethesda Softworks     0.82     0.60     0.03
## 1151                               Nintendo     0.98     0.04     0.49
## 1152                                    THQ     1.49     0.00     0.00
## 1153                   Take-Two Interactive     1.30     0.23     0.00
## 1154                           Video System     0.46     0.96     0.09
## 1155                             Activision     1.49     0.09     0.00
## 1156                            Square Enix     0.59     0.83     0.02
## 1157           Konami Digital Entertainment     0.71     0.48     0.30
## 1158                                   Sega     1.05     0.44     0.06
## 1159             Disney Interactive Studios     1.05     0.41     0.00
## 1160                            Global Star     1.26     0.12     0.00
## 1161                             Activision     0.01     1.58     0.00
## 1162                                Ubisoft     0.71     0.69     0.02
## 1163                               Nintendo     1.15     0.36     0.04
## 1164            Sony Computer Entertainment     0.61     0.41     0.46
## 1165                                  Atari     1.48     0.09     0.00
## 1166           Konami Digital Entertainment     0.04     1.10     0.32
## 1167                        Electronic Arts     0.88     0.60     0.00
## 1168                               Nintendo     0.78     0.37     0.30
## 1169                            Square Enix     0.88     0.26     0.34
## 1170           Konami Digital Entertainment     0.94     0.48     0.01
## 1171                                Ubisoft     0.92     0.43     0.07
## 1172            Sony Computer Entertainment     0.88     0.60     0.00
## 1173                                   Sega     0.60     0.69     0.02
## 1174                          Vivendi Games     0.85     0.65     0.00
## 1175                               Nintendo     0.69     0.53     0.24
## 1176                                 Capcom     0.58     0.45     0.34
## 1177                 Microsoft Game Studios     1.06     0.35     0.01
## 1178           Konami Digital Entertainment     0.10     0.18     0.12
## 1179                        Electronic Arts     0.77     0.60     0.00
## 1180                 Microsoft Game Studios     0.92     0.50     0.03
## 1181                                Ubisoft     0.90     0.53     0.00
## 1182                             Activision     0.84     0.57     0.00
## 1183                        Electronic Arts     0.57     0.88     0.00
## 1184                        Electronic Arts     1.31     0.09     0.00
## 1185                           Gotham Games     0.98     0.53     0.00
## 1186                               Nintendo     0.95     0.11     0.46
## 1187                            Square Enix     0.17     0.02     1.36
## 1188             Disney Interactive Studios     0.63     0.76     0.00
## 1189                   Take-Two Interactive     0.77     0.60     0.00
## 1190                        Electronic Arts     1.07     0.40     0.00
## 1191                        Electronic Arts     0.62     0.78     0.01
## 1192                   Take-Two Interactive     0.86     0.54     0.00
## 1193                               Nintendo     0.59     0.14     0.81
## 1194             Disney Interactive Studios     1.05     0.36     0.00
## 1195            Sony Computer Entertainment     1.32     0.19     0.00
## 1196                                 Capcom     0.67     0.17     0.69
## 1197                               Nintendo     0.57     0.43     0.44
## 1198                       Enix Corporation     0.00     0.00     1.56
## 1199                               Nintendo     0.68     0.38     0.44
## 1200                        Electronic Arts     0.80     0.59     0.01
## 1201             Disney Interactive Studios     0.73     0.67     0.00
## 1202                                  Atari     0.76     0.59     0.00
## 1203                                Ubisoft     0.91     0.57     0.00
## 1204 Warner Bros. Interactive Entertainment     0.95     0.46     0.00
## 1205                        Electronic Arts     1.13     0.38     0.02
## 1206                             Activision     0.57     0.87     0.02
## 1207                             Activision     0.92     0.48     0.00
## 1208                       Westwood Studios     1.55     0.00     0.00
## 1209                     Bethesda Softworks     0.47     0.80     0.03
## 1210                   Take-Two Interactive     0.85     0.55     0.00
## 1211                             Activision     0.37     0.96     0.00
## 1212                   Take-Two Interactive     0.85     0.46     0.02
## 1213            Sony Computer Entertainment     0.83     0.44     0.08
## 1214                             Activision     0.58     0.87     0.00
## 1215                                  Atari     0.78     0.43     0.19
## 1216                                Ubisoft     1.40     0.02     0.02
## 1217            Sony Computer Entertainment     0.50     0.76     0.04
## 1218                        Electronic Arts     1.26     0.07     0.00
## 1219                        Fox Interactive     0.85     0.58     0.00
## 1220            Sony Computer Entertainment     0.53     0.66     0.13
## 1221                     Namco Bandai Games     0.42     0.65     0.33
## 1222           Konami Digital Entertainment     0.18     0.63     0.49
## 1223                  Acclaim Entertainment     1.19     0.29     0.00
## 1224                            989 Studios     1.44     0.05     0.00
## 1225                     Bethesda Softworks     0.72     0.52     0.04
## 1226                               Nintendo     1.09     0.15     0.25
## 1227                        Electronic Arts     0.85     0.58     0.00
## 1228                             Activision     0.64     0.69     0.00
## 1229                                 Capcom     0.67     0.43     0.29
## 1230                        Electronic Arts     1.07     0.39     0.00
## 1231                        Electronic Arts     0.36     0.90     0.00
## 1232                               Nintendo     0.70     0.55     0.16
## 1233                        Electronic Arts     1.43     0.05     0.00
## 1234                     Namco Bandai Games     0.18     0.06     1.27
## 1235                               Nintendo     0.00     0.00     1.52
## 1236                        Electronic Arts     1.45     0.04     0.00
## 1237                            Square Enix     0.88     0.48     0.00
## 1238                        Electronic Arts     1.43     0.05     0.00
## 1239                        Electronic Arts     0.92     0.40     0.00
## 1240                                  Atari     1.11     0.31     0.06
## 1241                     Namco Bandai Games     1.26     0.05     0.00
## 1242             Disney Interactive Studios     0.85     0.51     0.01
## 1243                        Electronic Arts     0.70     0.64     0.01
## 1244                        Electronic Arts     0.94     0.44     0.00
## 1245                                 GungHo     0.00     0.00     1.51
## 1246                             Activision     0.94     0.43     0.00
## 1247                                 Capcom     0.93     0.15     0.42
## 1248                        Electronic Arts     0.23     1.16     0.00
## 1249                        Electronic Arts     1.41     0.06     0.00
## 1250                        Electronic Arts     0.35     0.03     0.00
## 1251                     Hasbro Interactive     1.18     0.27     0.00
## 1252                        Electronic Arts     0.56     0.77     0.00
## 1253                                   Sega     0.02     1.16     0.00
## 1254                     Namco Bandai Games     0.60     0.47     0.21
## 1255                     Namco Bandai Games     0.99     0.32     0.11
## 1256                             Activision     0.60     0.62     0.03
## 1257                    Crave Entertainment     0.66     0.52     0.15
## 1258                           Midway Games     1.41     0.05     0.00
## 1259                                    THQ     0.49     0.78     0.00
## 1260                        Electronic Arts     1.19     0.07     0.05
## 1261                            Hudson Soft     0.00     0.00     1.50
## 1262                                    THQ     1.20     0.27     0.02
## 1263                               Nintendo     0.46     0.10     0.92
## 1264                                   Sega     1.00     0.36     0.09
## 1265                              LucasArts     0.80     0.49     0.00
## 1266                     Namco Bandai Games     1.21     0.14     0.10
## 1267                              MTV Games     1.13     0.20     0.00
## 1268                               Nintendo     0.72     0.38     0.36
## 1269                        Electronic Arts     1.00     0.43     0.00
## 1270                        Electronic Arts     1.22     0.00     0.00
## 1271                                 Capcom     0.75     0.52     0.09
## 1272                               Nintendo     0.82     0.36     0.25
## 1273            Sony Computer Entertainment     0.00     1.10     0.00
## 1274                   Take-Two Interactive     0.50     0.69     0.04
## 1275 Warner Bros. Interactive Entertainment     0.88     0.47     0.00
## 1276                     Bethesda Softworks     0.54     0.69     0.02
## 1277                            Square Enix     0.47     0.37     0.52
## 1278                                    THQ     1.20     0.25     0.02
## 1279                               Nintendo     0.70     0.35     0.39
## 1280                               Nintendo     0.28     0.50     0.65
## 1281                                   Sega     0.44     0.67     0.00
## 1282                                    THQ     0.43     0.88     0.00
## 1283            Sony Computer Entertainment     0.64     0.57     0.05
## 1284                                    THQ     0.99     0.35     0.00
## 1285             Disney Interactive Studios     1.07     0.28     0.00
## 1286                             Activision     0.82     0.51     0.01
## 1287                   Take-Two Interactive     0.72     0.56     0.00
## 1288                        Electronic Arts     1.08     0.20     0.00
## 1289                              LucasArts     0.84     0.51     0.00
## 1290                                Ubisoft     0.82     0.59     0.00
## 1291                               Nintendo     0.52     0.77     0.07
## 1292                                Ubisoft     0.39     0.91     0.00
## 1293                                    THQ     1.04     0.37     0.00
## 1294                               Nintendo     0.62     0.18     0.65
## 1295                             Activision     0.71     0.43     0.07
## 1296                                Ubisoft     0.93     0.40     0.02
## 1297                        Electronic Arts     1.33     0.03     0.01
## 1298                             SquareSoft     0.29     0.19     0.89
## 1299                                    THQ     1.02     0.38     0.00
## 1300 Warner Bros. Interactive Entertainment     1.06     0.29     0.00
## 1301                           Midway Games     0.72     0.56     0.00
## 1302                                    N/A     0.81     0.55     0.00
## 1303                            Square Enix     0.06     0.09     1.30
## 1304                                  Atari     0.95     0.37     0.10
## 1305                                Ubisoft     0.72     0.40     0.14
## 1306                                 Coleco     1.36     0.08     0.00
## 1307                         GT Interactive     0.81     0.55     0.00
## 1308                               Nintendo     0.35     0.69     0.28
## 1309                               Nintendo     0.93     0.24     0.25
## 1310                                    THQ     0.46     0.82     0.00
## 1311                                    THQ     1.17     0.20     0.04
## 1312                        Electronic Arts     0.81     0.46     0.04
## 1313                                    THQ     0.83     0.48     0.02
## 1314                                 Capcom     0.37     0.47     0.54
## 1315                        Electronic Arts     1.08     0.11     0.00
## 1316                   Take-Two Interactive     0.71     0.55     0.00
## 1317                                 Capcom     0.54     0.35     0.46
## 1318                     Namco Bandai Games     0.00     0.00     1.44
## 1319                               Nintendo     0.00     0.00     1.45
## 1320                     Namco Bandai Games     0.00     0.00     1.45
## 1321                     Namco Bandai Games     0.00     0.00     1.44
## 1322                     Namco Bandai Games     1.24     0.17     0.03
## 1323                        Electronic Arts     0.78     0.45     0.03
## 1324 Warner Bros. Interactive Entertainment     1.02     0.32     0.00
## 1325                             Activision     1.38     0.05     0.00
## 1326                   Take-Two Interactive     0.89     0.31     0.01
## 1327                                   Sega     0.77     0.49     0.03
## 1328            Sony Computer Entertainment     0.04     1.08     0.00
## 1329                               Nintendo     0.26     0.07     1.09
## 1330                                   Sega     0.61     0.68     0.00
## 1331             Disney Interactive Studios     0.97     0.34     0.00
## 1332                                Ubisoft     0.37     0.89     0.00
## 1333                        Electronic Arts     1.03     0.32     0.00
## 1334                        Electronic Arts     1.16     0.08     0.00
## 1335                              LucasArts     0.95     0.37     0.00
## 1336                     Hasbro Interactive     0.80     0.54     0.00
## 1337                                    THQ     0.92     0.38     0.00
## 1338                 Microsoft Game Studios     0.92     0.39     0.00
## 1339                        Electronic Arts     0.52     0.75     0.00
## 1340                                   Sega     0.53     0.57     0.00
## 1341                                 Capcom     0.82     0.23     0.35
## 1342             Disney Interactive Studios     1.12     0.19     0.00
## 1343                               Nintendo     0.00     0.00     1.39
## 1344                        Electronic Arts     0.79     0.54     0.00
## 1345                                Ubisoft     0.00     1.13     0.00
## 1346                        Electronic Arts     0.96     0.33     0.00
## 1347                                   Sega     0.73     0.42     0.00
## 1348                   Take-Two Interactive     0.75     0.46     0.01
## 1349                        Electronic Arts     0.63     0.56     0.03
## 1350                             Activision     0.70     0.54     0.00
## 1351                        Electronic Arts     1.35     0.05     0.00
## 1352                        Electronic Arts     0.48     0.77     0.00
## 1353                               Nintendo     0.89     0.22     0.22
## 1354                        Electronic Arts     1.15     0.08     0.00
## 1355                               Nintendo     0.57     0.12     0.71
## 1356                     Namco Bandai Games     0.12     0.00     1.30
## 1357                        Electronic Arts     0.73     0.48     0.00
## 1358                        Electronic Arts     0.80     0.47     0.00
## 1359           Konami Digital Entertainment     0.45     0.37     0.44
## 1360                                 Capcom     0.63     0.38     0.35
## 1361                                Ubisoft     1.22     0.06     0.02
## 1362                            Square Enix     0.09     0.07     1.24
## 1363                                    THQ     0.80     0.40     0.02
## 1364                      Eidos Interactive     1.09     0.28     0.00
## 1365                        Electronic Arts     0.48     0.62     0.06
## 1366                     Virgin Interactive     0.97     0.37     0.03
## 1367                                   Sega     0.85     0.43     0.00
## 1368                      Rising Star Games     0.78     0.51     0.00
## 1369                        Electronic Arts     0.57     0.69     0.00
## 1370                        Electronic Arts     1.02     0.34     0.00
## 1371            Sony Computer Entertainment     0.00     0.47     0.77
## 1372                             Activision     0.90     0.39     0.00
## 1373            Sony Computer Entertainment     1.19     0.17     0.00
## 1374                        Electronic Arts     0.69     0.54     0.00
## 1375                        Electronic Arts     0.95     0.33     0.00
## 1376                             Activision     1.07     0.28     0.00
## 1377                              LucasArts     0.58     0.50     0.00
## 1378                        Electronic Arts     0.89     0.39     0.00
## 1379                        Electronic Arts     0.38     0.08     0.03
## 1380            Sony Computer Entertainment     1.15     0.20     0.00
## 1381                             Activision     0.90     0.38     0.00
## 1382            Sony Computer Entertainment     0.36     0.44     0.32
## 1383                                    THQ     0.74     0.52     0.08
## 1384                             SquareSoft     0.00     0.00     1.39
## 1385                            Square Enix     0.47     0.65     0.06
## 1386                            Codemasters     0.03     1.05     0.02
## 1387                 Microsoft Game Studios     0.50     0.78     0.01
## 1388                        Electronic Arts     0.78     0.53     0.00
## 1389                               Nintendo     0.00     0.19     1.18
## 1390                  Acclaim Entertainment     1.19     0.16     0.00
## 1391           Konami Digital Entertainment     1.05     0.17     0.15
## 1392                             Tecmo Koei     0.24     0.18     0.91
## 1393             Disney Interactive Studios     0.87     0.38     0.00
## 1394 Warner Bros. Interactive Entertainment     0.97     0.30     0.00
## 1395                                Ubisoft     0.43     0.69     0.01
## 1396                               Nintendo     0.48     0.53     0.28
## 1397 Warner Bros. Interactive Entertainment     0.90     0.37     0.00
## 1398                             Activision     0.96     0.37     0.00
## 1399             Disney Interactive Studios     0.63     0.62     0.00
## 1400                               Nintendo     0.50     0.32     0.49
## 1401                 Microsoft Game Studios     0.83     0.43     0.00
## 1402 Warner Bros. Interactive Entertainment     1.03     0.21     0.00
## 1403                               Nintendo     0.58     0.18     0.59
## 1404                            Square Enix     0.55     0.70     0.02
## 1405                   Take-Two Interactive     0.77     0.54     0.00
## 1406                                   Sega     0.71     0.53     0.00
## 1407                  Acclaim Entertainment     0.67     0.53     0.00
## 1408                             Activision     1.26     0.02     0.00
## 1409                              LucasArts     0.60     0.01     0.00
## 1410                            Square Enix     0.76     0.47     0.02
## 1411                             Activision     0.76     0.52     0.00
## 1412                            Square Enix     0.33     0.41     0.54
## 1413                             Activision     0.80     0.45     0.00
## 1414                            Square Enix     0.50     0.59     0.07
## 1415                             Activision     0.99     0.33     0.00
## 1416                               Nintendo     0.00     0.00     1.37
## 1417                        Electronic Arts     0.49     0.55     0.00
## 1418                                 Capcom     0.43     0.56     0.15
## 1419                     Namco Bandai Games     0.24     0.70     0.16
## 1420                                Ubisoft     0.86     0.45     0.00
## 1421                        Electronic Arts     0.63     0.57     0.00
## 1422                          Vivendi Games     0.63     0.66     0.00
## 1423                        Electronic Arts     0.87     0.34     0.02
## 1424            Sony Computer Entertainment     0.23     0.04     0.00
## 1425           Konami Digital Entertainment     0.27     0.08     1.00
## 1426                       Enix Corporation     0.00     0.00     1.36
## 1427                                  Atari     1.26     0.08     0.00
## 1428                        Electronic Arts     0.67     0.52     0.00
## 1429                                    THQ     0.51     0.60     0.00
## 1430           Konami Digital Entertainment     0.00     0.00     1.26
## 1431                        Electronic Arts     0.70     0.52     0.00
## 1432                        Electronic Arts     1.29     0.03     0.00
## 1433                              505 Games     0.79     0.42     0.01
## 1434                        Electronic Arts     0.63     0.57     0.01
## 1435 Warner Bros. Interactive Entertainment     0.73     0.50     0.01
## 1436            Sony Computer Entertainment     0.43     0.65     0.02
## 1437                        Electronic Arts     0.22     0.05     1.06
## 1438                        Electronic Arts     0.39     0.87     0.00
## 1439                          Vivendi Games     0.70     0.58     0.00
## 1440                 Microsoft Game Studios     0.78     0.44     0.00
## 1441                             SquareSoft     0.15     0.04     1.07
## 1442            Sony Computer Entertainment     0.00     1.04     0.00
## 1443                        Electronic Arts     0.20     0.76     0.00
## 1444                        Electronic Arts     0.23     0.73     0.02
## 1445             Disney Interactive Studios     1.22     0.03     0.00
## 1446                        Electronic Arts     0.31     0.89     0.01
## 1447                                  Atari     0.95     0.21     0.01
## 1448                                 Capcom     0.79     0.34     0.08
## 1449                                Ubisoft     0.66     0.44     0.04
## 1450                               Nintendo     0.85     0.27     0.13
## 1451                        Electronic Arts     0.71     0.49     0.02
## 1452                            Square Enix     0.61     0.16     0.49
## 1453                                 Capcom     0.81     0.28     0.11
## 1454                  Acclaim Entertainment     1.03     0.27     0.00
## 1455                             Activision     0.85     0.43     0.00
## 1456                                Ubisoft     0.77     0.45     0.00
## 1457                            Codemasters     0.25     0.75     0.08
## 1458                                 Capcom     0.24     0.03     1.03
## 1459                               Nintendo     0.84     0.22     0.24
## 1460                        Electronic Arts     1.22     0.05     0.05
## 1461                                 Capcom     1.09     0.04     0.10
## 1462                        Electronic Arts     1.32     0.02     0.00
## 1463                   Take-Two Interactive     0.87     0.21     0.02
## 1464                   Take-Two Interactive     0.65     0.51     0.00
## 1465                        Electronic Arts     0.76     0.35     0.05
## 1466                        Electronic Arts     1.10     0.06     0.00
## 1467                                Level 5     0.00     0.00     1.33
## 1468            Sony Computer Entertainment     1.27     0.05     0.00
## 1469                 Microsoft Game Studios     0.66     0.50     0.05
## 1470                             Activision     0.92     0.35     0.01
## 1471                  Acclaim Entertainment     1.08     0.24     0.00
## 1472                             Activision     0.90     0.38     0.01
## 1473                        Electronic Arts     0.93     0.35     0.00
## 1474                        Electronic Arts     0.74     0.50     0.00
## 1475                               Nintendo     0.87     0.35     0.07
## 1476                     Bethesda Softworks     0.48     0.59     0.04
## 1477                         TDK Mediactive     0.65     0.51     0.00
## 1478                                    THQ     0.62     0.49     0.01
## 1479                             Activision     0.86     0.34     0.00
## 1480                   Take-Two Interactive     0.58     0.56     0.05
## 1481                                    THQ     0.90     0.31     0.00
## 1482                             Activision     0.01     0.13     0.00
## 1483                               Nintendo     0.73     0.16     0.40
## 1484                            Codemasters     0.03     1.16     0.02
## 1485                                  Atari     1.06     0.08     0.00
## 1486                                Ubisoft     0.53     0.48     0.06
## 1487                      Eidos Interactive     0.73     0.50     0.00
## 1488                                Ubisoft     0.71     0.48     0.00
## 1489                                 Capcom     0.31     0.04     0.96
## 1490                                Ubisoft     0.79     0.41     0.00
## 1491                        Electronic Arts     0.69     0.37     0.02
## 1492                        Electronic Arts     0.73     0.50     0.00
## 1493            Sony Computer Entertainment     0.67     0.34     0.13
## 1494                              ASC Games     0.73     0.50     0.00
## 1495            Sony Computer Entertainment     0.77     0.29     0.09
## 1496                     Bethesda Softworks     0.64     0.50     0.00
## 1497                     Bethesda Softworks     0.47     0.58     0.06
## 1498 Warner Bros. Interactive Entertainment     0.55     0.55     0.00
## 1499                             Activision     0.78     0.45     0.00
## 1500                     Namco Bandai Games     0.69     0.50     0.00
## 1501                                    THQ     0.57     0.67     0.00
## 1502                             Activision     1.22     0.07     0.00
## 1503                  Acclaim Entertainment     0.64     0.50     0.00
## 1504                             Activision     0.84     0.35     0.00
## 1505                        Electronic Arts     0.84     0.43     0.00
## 1506                              MTV Games     0.97     0.23     0.00
## 1507                                  Atari     1.21     0.08     0.00
## 1508           Konami Digital Entertainment     0.94     0.35     0.00
## 1509                        Electronic Arts     1.07     0.04     0.02
## 1510                               Nintendo     0.62     0.47     0.11
## 1511                             Activision     0.75     0.44     0.00
## 1512            Sony Computer Entertainment     0.27     0.02     0.00
## 1513                             SquareSoft     0.00     0.00     1.29
## 1514                               Accolade     1.05     0.20     0.00
## 1515                     Namco Bandai Games     0.71     0.41     0.05
## 1516                                Ubisoft     0.62     0.56     0.00
## 1517                     Namco Bandai Games     0.56     0.38     0.28
## 1518                                Ubisoft     0.34     0.68     0.08
## 1519                               Nintendo     0.50     0.16     0.58
## 1520 Warner Bros. Interactive Entertainment     0.72     0.39     0.00
## 1521                                 Capcom     0.39     0.02     0.85
## 1522                                 Capcom     0.54     0.27     0.45
## 1523             Disney Interactive Studios     0.67     0.49     0.00
## 1524                        Electronic Arts     0.46     0.56     0.06
## 1525                         TDK Mediactive     0.93     0.34     0.00
## 1526                               Nintendo     0.74     0.05     0.43
## 1527                                  Atari     1.13     0.01     0.06
## 1528                              Zoo Games     1.20     0.00     0.00
## 1529                                  Atari     0.63     0.49     0.00
## 1530 Warner Bros. Interactive Entertainment     0.86     0.30     0.01
## 1531                     Bethesda Softworks     0.51     0.67     0.00
## 1532                                   Sega     0.69     0.47     0.01
## 1533                                Ubisoft     0.46     0.56     0.06
## 1534                        Electronic Arts     0.68     0.47     0.00
## 1535                   Take-Two Interactive     1.22     0.05     0.00
## 1536                                Ubisoft     1.10     0.03     0.06
## 1537                     Bethesda Softworks     0.78     0.38     0.00
## 1538              Sony Online Entertainment     0.63     0.49     0.00
## 1539 Warner Bros. Interactive Entertainment     0.57     0.44     0.00
## 1540                               Nintendo     0.00     0.00     1.28
## 1541                                    3DO     1.10     0.14     0.00
## 1542                                Ubisoft     0.55     0.59     0.00
## 1543                            989 Studios     1.07     0.16     0.00
## 1544                   Take-Two Interactive     0.63     0.49     0.00
## 1545                        Electronic Arts     0.45     0.66     0.02
## 1546           Konami Digital Entertainment     0.62     0.49     0.00
## 1547           Konami Digital Entertainment     0.58     0.40     0.21
## 1548                             Activision     1.03     0.14     0.00
## 1549 Warner Bros. Interactive Entertainment     0.69     0.47     0.00
## 1550                        Electronic Arts     1.22     0.05     0.00
## 1551                     Namco Bandai Games     0.40     0.33     0.40
## 1552                               Nintendo     0.48     0.35     0.36
## 1553                               Nintendo     0.44     0.29     0.47
## 1554 Warner Bros. Interactive Entertainment     0.72     0.03     0.00
## 1555                        Electronic Arts     0.71     0.48     0.00
## 1556                                 Imagic     1.18     0.08     0.00
## 1557                   Take-Two Interactive     1.00     0.16     0.00
## 1558                             Activision     0.85     0.37     0.00
## 1559                               Nintendo     0.68     0.16     0.41
## 1560           Konami Digital Entertainment     0.45     0.47     0.17
## 1561                               Nintendo     0.75     0.39     0.00
## 1562                                  Atari     0.49     0.38     0.26
## 1563                            Deep Silver     0.96     0.20     0.00
## 1564                                   Sega     0.71     0.19     0.24
## 1565                                    THQ     0.74     0.40     0.00
## 1566                                   Sega     0.87     0.30     0.06
## 1567            Sony Computer Entertainment     0.62     0.48     0.00
## 1568            Sony Computer Entertainment     0.39     0.26     0.53
## 1569                                    THQ     0.72     0.44     0.00
## 1570                            Square Enix     0.43     0.36     0.32
## 1571                        Electronic Arts     0.33     0.69     0.05
## 1572                        Electronic Arts     0.76     0.39     0.00
## 1573                   Take-Two Interactive     0.39     0.72     0.00
## 1574                                    THQ     0.05     0.03     1.10
## 1575                                   Sega     0.00     1.01     0.00
## 1576                            Codemasters     0.02     1.13     0.01
## 1577                      Eidos Interactive     0.00     1.15     0.00
## 1578                     Hasbro Interactive     0.99     0.22     0.00
## 1579                                  Atari     0.10     0.02     1.12
## 1580                      Eidos Interactive     0.45     0.55     0.05
## 1581                             Activision     0.56     0.56     0.00
## 1582 Warner Bros. Interactive Entertainment     0.77     0.37     0.00
## 1583                        Electronic Arts     0.70     0.47     0.00
## 1584                            Deep Silver     0.56     0.41     0.09
## 1585                              LucasArts     0.49     0.00     0.01
## 1586                                  Atari     1.17     0.07     0.00
## 1587                                Ubisoft     0.72     0.41     0.01
## 1588            Sony Computer Entertainment     0.94     0.16     0.02
## 1589                     Namco Bandai Games     0.00     0.00     1.25
## 1590                     Namco Bandai Games     0.00     0.00     1.25
## 1591                                Natsume     0.99     0.13     0.10
## 1592                        Electronic Arts     1.00     0.13     0.02
## 1593                               Nintendo     0.71     0.19     0.31
## 1594                        Electronic Arts     1.01     0.04     0.03
## 1595                                Ubisoft     0.47     0.53     0.03
## 1596            Sony Computer Entertainment     0.35     0.61     0.02
## 1597                               Nintendo     0.48     0.35     0.34
## 1598                                  Atari     1.19     0.05     0.00
## 1599                                    THQ     0.49     0.62     0.00
## 1600                      Eidos Interactive     0.61     0.48     0.00
## 1601                                Ubisoft     0.52     0.56     0.00
## 1602                        Electronic Arts     1.05     0.16     0.00
## 1603            Sony Computer Entertainment     0.85     0.03     0.22
## 1604                                    RTL     0.45     0.67     0.00
## 1605                     Virgin Interactive     0.61     0.48     0.00
## 1606                         GT Interactive     0.75     0.44     0.00
## 1607                     Namco Bandai Games     0.24     0.19     0.75
## 1608                                    THQ     0.69     0.00     0.00
## 1609                               Nintendo     0.56     0.22     0.43
## 1610 Warner Bros. Interactive Entertainment     0.69     0.42     0.00
## 1611                             Activision     0.82     0.38     0.00
## 1612                             Activision     0.65     0.40     0.00
## 1613                             Activision     1.12     0.02     0.00
## 1614                        Electronic Arts     0.12     0.89     0.00
## 1615           Konami Digital Entertainment     0.60     0.47     0.00
## 1616                        Electronic Arts     1.08     0.02     0.00
## 1617                 Microsoft Game Studios     0.92     0.20     0.07
## 1618             Disney Interactive Studios     0.68     0.40     0.04
## 1619                  Universal Interactive     0.59     0.57     0.00
## 1620                                  Atari     0.60     0.47     0.00
## 1621                                Ubisoft     0.43     0.47     0.05
## 1622            Sony Computer Entertainment     0.69     0.47     0.00
## 1623                            Square Enix     0.52     0.35     0.18
## 1624 Warner Bros. Interactive Entertainment     0.64     0.49     0.00
## 1625                               Nintendo     0.29     0.17     0.75
## 1626                                    THQ     0.88     0.33     0.00
## 1627                             Activision     0.68     0.47     0.00
## 1628                               Nintendo     0.58     0.42     0.13
## 1629           Konami Digital Entertainment     0.54     0.06     0.62
## 1630                               Nintendo     0.79     0.27     0.12
## 1631                             Activision     1.00     0.13     0.00
## 1632                               Nintendo     0.40     0.11     0.70
## 1633                        Electronic Arts     0.49     0.50     0.03
## 1634                            D3Publisher     0.54     0.55     0.00
## 1635                        Electronic Arts     0.30     0.64     0.07
## 1636                     Namco Bandai Games     0.29     0.18     0.67
## 1637                               Nintendo     1.09     0.03     0.00
## 1638                               Nintendo     0.58     0.16     0.46
## 1639            Sony Computer Entertainment     0.13     0.07     1.00
## 1640                     Namco Bandai Games     0.27     0.08     0.85
## 1641                               Nintendo     0.76     0.30     0.12
## 1642                               Nintendo     0.79     0.31     0.08
## 1643                              Alchemist     0.59     0.46     0.01
## 1644                        Electronic Arts     1.13     0.05     0.00
## 1645                             SquareSoft     0.00     0.00     1.14
## 1646                               Nintendo     0.61     0.27     0.27
## 1647                                  Maxis     0.68     0.46     0.00
## 1648                   Take-Two Interactive     0.98     0.19     0.00
## 1649                        Electronic Arts     0.68     0.46     0.00
## 1650                                   Sega     0.59     0.46     0.01
## 1651                                Unknown     0.60     0.46     0.00
## 1652                                    THQ     1.01     0.04     0.00
## 1653                 Microsoft Game Studios     0.93     0.24     0.00
## 1654                             Activision     0.78     0.40     0.00
## 1655                            Square Enix     0.51     0.04     0.62
## 1656                              LucasArts     1.05     0.05     0.01
## 1657                                 Capcom     0.55     0.44     0.14
## 1658            Sony Computer Entertainment     1.03     0.14     0.00
## 1659                   Take-Two Interactive     0.41     0.60     0.00
## 1660                              LucasArts     0.66     0.48     0.01
## 1661                     Virgin Interactive     0.34     0.49     0.28
## 1662                                 Capcom     0.66     0.17     0.35
## 1663                       Enix Corporation     0.00     0.00     1.20
## 1664                        Electronic Arts     0.69     0.48     0.01
## 1665                     Namco Bandai Games     0.42     0.46     0.15
## 1666                        Electronic Arts     0.25     0.69     0.03
## 1667                        Electronic Arts     0.72     0.37     0.01
## 1668                                    N/A     0.87     0.32     0.00
## 1669                                   Sega     0.44     0.39     0.21
## 1670                        Electronic Arts     0.67     0.46     0.00
## 1671                        Electronic Arts     0.71     0.38     0.00
## 1672           Konami Digital Entertainment     0.01     0.88     0.31
## 1673                      Black Label Games     0.59     0.46     0.00
## 1674                        Electronic Arts     0.44     0.63     0.00
## 1675                        Electronic Arts     0.25     0.64     0.00
## 1676                        SouthPeak Games     1.00     0.04     0.00
## 1677                            Codemasters     0.12     0.74     0.11
## 1678                 Focus Home Interactive     0.08     1.04     0.00
## 1679                               Nintendo     0.48     0.13     0.56
## 1680                                   Sega     1.12     0.05     0.00
## 1681                               Nintendo     0.40     0.39     0.36
## 1682           Konami Digital Entertainment     0.00     0.00     1.20
## 1683           Konami Digital Entertainment     0.00     0.00     1.20
## 1684                     Namco Bandai Games     0.00     0.00     1.20
## 1685                                  Atari     0.72     0.43     0.01
## 1686                                    THQ     0.72     0.28     0.00
## 1687                        Electronic Arts     0.59     0.46     0.00
## 1688                        Electronic Arts     0.13     0.69     0.01
## 1689                        Electronic Arts     0.66     0.45     0.00
## 1690                                    THQ     0.86     0.32     0.00
## 1691 Warner Bros. Interactive Entertainment     0.50     0.50     0.00
## 1692                               Nintendo     0.53     0.38     0.19
## 1693                                    THQ     0.92     0.23     0.00
## 1694           Konami Digital Entertainment     0.09     0.84     0.11
## 1695                             Activision     0.85     0.23     0.00
## 1696                          Vivendi Games     0.99     0.04     0.00
## 1697                                 Capcom     0.68     0.14     0.35
## 1698                               Nintendo     1.02     0.13     0.04
## 1699                                Ubisoft     0.99     0.16     0.00
## 1700                      Eidos Interactive     0.76     0.38     0.00
## 1701             Disney Interactive Studios     0.77     0.31     0.00
## 1702                                    THQ     0.45     0.47     0.00
## 1703                             Activision     0.86     0.27     0.01
## 1704                               Nintendo     0.64     0.24     0.29
## 1705                               Nintendo     0.73     0.03     0.36
## 1706           Konami Digital Entertainment     0.38     0.35     0.38
## 1707           Konami Digital Entertainment     0.66     0.45     0.00
## 1708                             Activision     0.65     0.42     0.00
## 1709                                   Sega     0.18     0.64     0.27
## 1710                                  Atari     1.10     0.07     0.00
## 1711 Warner Bros. Interactive Entertainment     0.48     0.50     0.01
## 1712                               Nintendo     0.50     0.18     0.44
## 1713                                   Sega     0.52     0.24     0.38
## 1714                     Namco Bandai Games     0.10     0.00     1.08
## 1715                                Ubisoft     0.90     0.19     0.00
## 1716                             Activision     0.85     0.31     0.00
## 1717                     Namco Bandai Games     0.01     0.23     0.86
## 1718                                 Capcom     0.50     0.14     0.52
## 1719                        Electronic Arts     0.65     0.44     0.00
## 1720                             Activision     0.98     0.04     0.00
## 1721                        Electronic Arts     0.57     0.45     0.00
## 1722                                 Capcom     0.48     0.24     0.36
## 1723                                 Capcom     0.68     0.10     0.39
## 1724                              LucasArts     0.40     0.48     0.00
## 1725                               Nintendo     0.53     0.16     0.42
## 1726                                    THQ     0.53     0.45     0.02
## 1727 Warner Bros. Interactive Entertainment     0.36     0.59     0.04
## 1728                             SquareSoft     0.00     0.00     1.17
## 1729                                  Ocean     0.74     0.38     0.02
## 1730                 Zoo Digital Publishing     0.57     0.45     0.00
## 1731                   Take-Two Interactive     0.39     0.69     0.00
## 1732                     Bethesda Softworks     0.59     0.45     0.00
## 1733                            989 Studios     0.65     0.44     0.00
## 1734                                    THQ     0.48     0.48     0.01
## 1735            Sony Computer Entertainment     0.16     0.11     0.83
## 1736                        Electronic Arts     0.76     0.36     0.00
## 1737                        Electronic Arts     0.74     0.26     0.02
## 1738                        Electronic Arts     0.03     1.06     0.00
## 1739                              Psygnosis     0.65     0.44     0.00
## 1740                               Nintendo     0.68     0.25     0.21
## 1741                              LucasArts     0.52     0.46     0.00
## 1742                   Take-Two Interactive     0.97     0.04     0.00
## 1743                                Ubisoft     0.57     0.44     0.00
## 1744            Sony Computer Entertainment     0.39     0.27     0.43
## 1745                        Electronic Arts     0.51     0.51     0.01
## 1746                                   Sega     0.41     0.06     0.04
## 1747                        Electronic Arts     0.57     0.44     0.00
## 1748           Konami Digital Entertainment     0.84     0.27     0.00
## 1749                                   Sega     0.21     0.16     0.77
## 1750                               Nintendo     0.78     0.28     0.07
## 1751                                 Capcom     0.57     0.08     0.50
## 1752                      Eidos Interactive     0.65     0.44     0.00
## 1753                                Ubisoft     0.70     0.36     0.00
## 1754                        Electronic Arts     0.41     0.66     0.00
## 1755                            Square Enix     0.45     0.24     0.30
## 1756                      Eidos Interactive     0.83     0.28     0.00
## 1757                       City Interactive     0.54     0.50     0.00
## 1758                                   Sega     0.53     0.48     0.01
## 1759                                   Sega     0.00     1.14     0.00
## 1760                           Midway Games     0.56     0.44     0.00
## 1761                        Electronic Arts     0.50     0.39     0.02
## 1762                     Empire Interactive     0.56     0.44     0.00
## 1763                               Nintendo     0.59     0.31     0.15
## 1764                                   Sega     0.00     0.95     0.00
## 1765                             Activision     1.07     0.07     0.00
## 1766                        Electronic Arts     0.59     0.45     0.01
## 1767                               Nintendo     0.51     0.20     0.41
## 1768                    ASCII Entertainment     0.00     0.00     1.15
## 1769                            Hudson Soft     0.00     0.00     1.15
## 1770             Disney Interactive Studios     0.50     0.52     0.00
## 1771                        Electronic Arts     0.15     0.67     0.01
## 1772                               Nintendo     0.50     0.16     0.46
## 1773                             Activision     0.00     1.12     0.00
## 1774                       Enix Corporation     0.00     0.00     1.15
## 1775                                    THQ     0.56     0.44     0.00
## 1776                   Take-Two Interactive     0.39     0.57     0.00
## 1777                                Success     0.64     0.43     0.00
## 1778                                Compile     0.00     0.00     1.07
## 1779                   Take-Two Interactive     0.64     0.43     0.00
## 1780                             Activision     0.44     0.34     0.25
## 1781            Sony Computer Entertainment     0.78     0.03     0.20
## 1782                             SquareSoft     0.25     0.17     0.65
## 1783                      Eidos Interactive     0.57     0.32     0.09
## 1784                   Take-Two Interactive     0.49     0.46     0.00
## 1785                               Nintendo     0.47     0.26     0.35
## 1786                             Activision     0.43     0.51     0.02
## 1787           Konami Digital Entertainment     0.95     0.04     0.00
## 1788                      Eidos Interactive     0.41     0.23     0.47
## 1789                               Nintendo     0.58     0.37     0.15
## 1790                  Acclaim Entertainment     0.90     0.23     0.00
## 1791                                 Capcom     0.71     0.16     0.25
## 1792                               Nintendo     0.46     0.17     0.48
## 1793                        Electronic Arts     0.71     0.38     0.00
## 1794                      Eidos Interactive     0.82     0.30     0.00
## 1795            Sony Computer Entertainment     0.31     0.03     0.76
## 1796                   Take-Two Interactive     0.00     0.51     0.00
## 1797                   Take-Two Interactive     0.45     0.45     0.06
## 1798            Sony Computer Entertainment     0.75     0.21     0.05
## 1799                 Microsoft Game Studios     0.63     0.40     0.00
## 1800                                  Atari     0.12     0.10     0.88
## 1801                        Electronic Arts     0.70     0.39     0.01
## 1802                     Namco Bandai Games     0.41     0.45     0.11
## 1803                 Microsoft Game Studios     1.01     0.10     0.00
## 1804                        Electronic Arts     0.76     0.27     0.00
## 1805                    ASCII Entertainment     0.00     0.00     1.06
## 1806                                    THQ     0.81     0.30     0.00
## 1807                                Ubisoft     0.37     0.58     0.00
## 1808                              LucasArts     0.61     0.43     0.00
## 1809                                Ubisoft     0.99     0.12     0.00
## 1810                               Nintendo     0.23     0.05     0.84
## 1811                        Electronic Arts     0.31     0.58     0.02
## 1812                             Activision     0.65     0.37     0.00
## 1813                                   Sega     0.34     0.57     0.04
## 1814            Sony Computer Entertainment     0.63     0.43     0.00
## 1815                               Nintendo     0.33     0.37     0.37
## 1816                               Nintendo     0.81     0.30     0.00
## 1817            Sony Computer Entertainment     0.45     0.56     0.00
## 1818                               Nintendo     0.53     0.33     0.17
## 1819                                  Atari     1.05     0.06     0.00
## 1820                             Activision     0.55     0.43     0.00
## 1821                               Nintendo     0.56     0.24     0.30
## 1822                                Ubisoft     0.25     0.74     0.00
## 1823            Sony Computer Entertainment     0.50     0.40     0.06
## 1824            Sony Computer Entertainment     1.03     0.00     0.01
## 1825                                Ubisoft     0.53     0.36     0.09
## 1826                             Activision     0.66     0.40     0.00
## 1827                               Nintendo     0.41     0.06     0.63
## 1828                                Ubisoft     0.84     0.19     0.01
## 1829                             Activision     0.28     0.30     0.00
## 1830                                 Russel     0.00     1.12     0.00
## 1831                                   Sega     0.21     0.20     0.62
## 1832                                  Atlus     0.36     0.23     0.38
## 1833                             Activision     0.82     0.26     0.00
## 1834                 Microsoft Game Studios     0.63     0.36     0.02
## 1835                              MTV Games     0.67     0.29     0.00
## 1836                        Electronic Arts     0.72     0.29     0.01
## 1837                 Microsoft Game Studios     0.85     0.23     0.00
## 1838                             Activision     0.63     0.37     0.00
## 1839                              RedOctane     0.92     0.04     0.00
## 1840                        Electronic Arts     0.45     0.49     0.00
## 1841                        Electronic Arts     0.71     0.06     0.00
## 1842                                Ubisoft     0.68     0.38     0.00
## 1843                  Acclaim Entertainment     0.95     0.14     0.00
## 1844                               Nintendo     0.33     0.07     0.70
## 1845            Sony Computer Entertainment     0.00     0.00     1.10
## 1846                             SquareSoft     0.18     0.13     0.73
## 1847                               Nintendo     0.44     0.32     0.29
## 1848                   Take-Two Interactive     0.64     0.37     0.00
## 1849                     Namco Bandai Games     0.30     0.52     0.12
## 1850                                Ubisoft     0.52     0.35     0.00
## 1851                             Activision     1.03     0.06     0.00
## 1852                                  Atari     1.03     0.06     0.00
## 1853           Konami Digital Entertainment     0.50     0.35     0.10
## 1854                        Electronic Arts     0.61     0.42     0.00
## 1855                           Mastertronic     0.90     0.12     0.00
## 1856                            Hudson Soft     0.00     0.00     1.10
## 1857                             SquareSoft     0.00     0.00     1.10
## 1858                     Namco Bandai Games     0.00     0.00     1.10
## 1859                               Nintendo     0.45     0.33     0.29
## 1860                               Nintendo     0.51     0.12     0.45
## 1861           Konami Digital Entertainment     0.00     0.00     1.10
## 1862           Konami Digital Entertainment     0.52     0.42     0.00
## 1863                        Electronic Arts     0.52     0.40     0.04
## 1864            Sony Computer Entertainment     0.12     0.75     0.00
## 1865            Sony Computer Entertainment     0.00     0.84     0.00
## 1866                               Nintendo     0.54     0.21     0.31
## 1867                               Nintendo     0.47     0.42     0.13
## 1868                        Electronic Arts     0.53     0.45     0.00
## 1869                            Codemasters     0.31     0.56     0.03
## 1870                        Electronic Arts     0.45     0.52     0.01
## 1871            Sony Computer Entertainment     0.26     0.10     0.72
## 1872                                Ubisoft     0.46     0.51     0.00
## 1873                        Electronic Arts     1.01     0.00     0.00
## 1874                                   Sega     0.05     0.04     0.84
## 1875                             Activision     0.53     0.39     0.00
## 1876                                  Atari     0.78     0.29     0.00
## 1877                        Electronic Arts     0.91     0.09     0.00
## 1878                                   Sega     1.02     0.05     0.00
## 1879           Konami Digital Entertainment     0.00     0.00     1.07
## 1880                             Activision     0.54     0.33     0.01
## 1881                   Slightly Mad Studios     0.20     0.70     0.02
## 1882                        Electronic Arts     1.02     0.02     0.00
## 1883                                   Sega     0.64     0.34     0.01
## 1884                        Electronic Arts     0.89     0.03     0.01
## 1885                                   Sega     0.74     0.25     0.00
## 1886                              LucasArts     0.53     0.42     0.00
## 1887                                  Taito     0.00     0.00     1.02
## 1888                                    THQ     0.44     0.46     0.01
## 1889                              LucasArts     0.61     0.38     0.00
## 1890                        Electronic Arts     1.02     0.00     0.00
## 1891                        Electronic Arts     0.82     0.17     0.01
## 1892                           Midway Games     0.60     0.41     0.00
## 1893                        Electronic Arts     0.53     0.41     0.00
## 1894                                    THQ     0.53     0.41     0.00
## 1895                                Ubisoft     0.63     0.35     0.00
## 1896            Sony Computer Entertainment     0.75     0.18     0.00
## 1897                                 Agetec     0.53     0.41     0.00
## 1898                                   Sega     0.01     0.97     0.00
## 1899                                   Sega     0.29     0.51     0.08
## 1900                        Electronic Arts     0.64     0.28     0.04
## 1901             Disney Interactive Studios     0.51     0.40     0.00
## 1902                                  Atari     1.01     0.06     0.00
## 1903                                Ubisoft     0.64     0.34     0.00
## 1904                            Square Enix     0.37     0.30     0.28
## 1905                 Microsoft Game Studios     0.42     0.58     0.00
## 1906             Disney Interactive Studios     0.64     0.34     0.00
## 1907                           Midway Games     0.60     0.41     0.00
## 1908                              LucasArts     0.43     0.40     0.00
## 1909                                  Atari     0.77     0.29     0.00
## 1910                                Ubisoft     0.77     0.29     0.00
## 1911                               Nintendo     0.68     0.18     0.19
## 1912                        Electronic Arts     0.51     0.47     0.00
## 1913                        Electronic Arts     0.24     0.54     0.00
## 1914            Sony Computer Entertainment     0.00     0.00     1.00
## 1915                              LucasArts     0.96     0.03     0.00
## 1916                             Activision     0.89     0.03     0.00
## 1917                        Electronic Arts     0.26     0.69     0.00
## 1918                                Ubisoft     0.65     0.32     0.00
## 1919                                Ubisoft     0.47     0.40     0.03
## 1920                      Eidos Interactive     0.00     0.98     0.00
## 1921                                   Sega     0.17     0.12     0.77
## 1922                                    THQ     0.53     0.01     0.00
## 1923                                    THQ     0.86     0.12     0.00
## 1924                                 Capcom     0.79     0.18     0.03
## 1925                      Eidos Interactive     0.53     0.42     0.01
## 1926                        Electronic Arts     0.59     0.40     0.00
## 1927           Konami Digital Entertainment     0.08     0.90     0.04
## 1928                     Namco Bandai Games     0.74     0.15     0.13
## 1929                        Electronic Arts     0.60     0.36     0.00
## 1930                        Electronic Arts     0.54     0.42     0.00
## 1931            Sony Computer Entertainment     0.17     0.12     0.71
## 1932            Sony Computer Entertainment     0.10     0.63     0.00
## 1933                     Namco Bandai Games     0.49     0.34     0.09
## 1934                   Take-Two Interactive     0.57     0.38     0.02
## 1935                            Square Enix     0.31     0.20     0.45
## 1936                        Electronic Arts     0.59     0.40     0.00
## 1937                        Electronic Arts     0.59     0.40     0.00
## 1938                           Midway Games     0.88     0.04     0.00
## 1939                        Electronic Arts     0.52     0.41     0.00
## 1940                   Take-Two Interactive     0.28     0.49     0.03
## 1941                        Electronic Arts     0.66     0.30     0.00
## 1942                        Electronic Arts     0.28     0.58     0.00
## 1943                            D3Publisher     0.00     0.00     0.99
## 1944                             Activision     0.56     0.39     0.00
## 1945                   Take-Two Interactive     0.53     0.40     0.03
## 1946                        Electronic Arts     0.52     0.41     0.00
## 1947                             Microprose     0.18     0.81     0.00
## 1948                  Universal Interactive     0.52     0.41     0.00
## 1949                             Activision     0.63     0.33     0.00
## 1950                  Acclaim Entertainment     1.01     0.05     0.00
## 1951                           Midway Games     1.02     0.04     0.00
## 1952                                   Sega     0.55     0.40     0.00
## 1953                             Activision     0.36     0.49     0.00
## 1954                          Vivendi Games     1.03     0.02     0.00
## 1955                               Nintendo     0.43     0.46     0.09
## 1956                             Activision     0.76     0.28     0.00
## 1957                                Play It     0.52     0.40     0.00
## 1958                                    THQ     0.67     0.28     0.01
## 1959                        Electronic Arts     0.65     0.30     0.01
## 1960 Warner Bros. Interactive Entertainment     0.61     0.35     0.00
## 1961            Sony Computer Entertainment     0.49     0.39     0.00
## 1962                            Codemasters     0.27     0.57     0.01
## 1963                                   Sega     0.28     0.65     0.00
## 1964                            Codemasters     0.16     0.66     0.00
## 1965                             Activision     0.95     0.01     0.01
## 1966                                 Imagic     0.99     0.05     0.00
## 1967                                 Capcom     0.46     0.31     0.20
## 1968            Sony Computer Entertainment     0.81     0.11     0.00
## 1969                                  Atari     0.99     0.05     0.00
## 1970                   Take-Two Interactive     0.97     0.01     0.00
## 1971            Sony Computer Entertainment     0.00     0.00     0.92
## 1972                     Namco Bandai Games     0.00     0.00     1.05
## 1973                    ASCII Entertainment     0.00     0.00     1.04
## 1974                            Hudson Soft     0.00     0.00     1.05
## 1975                                   Sega     0.51     0.40     0.00
## 1976 Warner Bros. Interactive Entertainment     0.37     0.49     0.00
## 1977                        Electronic Arts     0.78     0.26     0.00
## 1978                  Acclaim Entertainment     0.91     0.11     0.00
## 1979                        Electronic Arts     0.46     0.41     0.01
## 1980                 Microsoft Game Studios     0.52     0.51     0.00
## 1981                                   Sega     0.23     0.58     0.03
## 1982            Sony Computer Entertainment     0.19     0.13     0.66
## 1983                        Electronic Arts     0.51     0.40     0.00
## 1984                                Ubisoft     0.45     0.48     0.00
## 1985                      Eidos Interactive     0.58     0.40     0.00
## 1986                                    THQ     0.56     0.37     0.01
## 1987                     Namco Bandai Games     0.09     0.06     0.83
## 1988                            Square Enix     0.31     0.49     0.05
## 1989                  Acclaim Entertainment     0.58     0.39     0.00
## 1990                     Virgin Interactive     0.45     0.30     0.22
## 1991                               Nintendo     0.44     0.12     0.45
## 1992           Konami Digital Entertainment     0.87     0.03     0.00
## 1993                                   Sega     0.41     0.46     0.00
## 1994                            Hudson Soft     0.50     0.20     0.31
## 1995                  Acclaim Entertainment     0.91     0.10     0.00
## 1996                               Nintendo     0.39     0.16     0.37
## 1997                                   Sega     0.44     0.48     0.00
## 1998                                   Sega     0.43     0.50     0.00
## 1999                        Electronic Arts     0.53     0.46     0.00
## 2000                        Electronic Arts     0.54     0.39     0.00
## 2001                            Codemasters     0.12     0.63     0.05
## 2002                     Bethesda Softworks     0.59     0.35     0.01
## 2003                                    THQ     0.86     0.03     0.00
## 2004            Sony Computer Entertainment     0.47     0.34     0.00
## 2005                                    THQ     0.55     0.32     0.03
## 2006             Disney Interactive Studios     0.54     0.39     0.00
## 2007                                Ubisoft     0.34     0.48     0.02
## 2008                               Nintendo     0.70     0.05     0.21
## 2009 Warner Bros. Interactive Entertainment     0.46     0.47     0.00
## 2010                        Electronic Arts     0.50     0.39     0.00
## 2011                               Nintendo     0.68     0.31     0.00
## 2012                            Hudson Soft     0.18     0.00     0.85
## 2013                               Nintendo     0.56     0.30     0.08
## 2014                             Activision     0.44     0.42     0.00
## 2015                      Eidos Interactive     0.96     0.07     0.00
## 2016                     Virgin Interactive     0.38     0.12     0.51
## 2017                        Electronic Arts     0.61     0.32     0.00
## 2018                                    GSP     0.23     0.71     0.00
## 2019            Sony Computer Entertainment     0.16     0.57     0.00
## 2020                        Electronic Arts     0.32     0.59     0.01
## 2021                             Activision     0.67     0.26     0.00
## 2022                        Electronic Arts     0.93     0.01     0.00
## 2023                                  Atari     0.32     0.36     0.26
## 2024                             Activision     0.73     0.26     0.01
## 2025                   Take-Two Interactive     0.86     0.06     0.00
## 2026                                Ubisoft     0.87     0.05     0.02
## 2027                                   Sega     0.56     0.32     0.01
## 2028                                 Capcom     0.39     0.12     0.49
## 2029                        Electronic Arts     0.57     0.39     0.00
## 2030             Disney Interactive Studios     0.64     0.28     0.00
## 2031                                Ubisoft     0.25     0.65     0.00
## 2032                             Activision     0.62     0.31     0.00
## 2033                                Ubisoft     0.51     0.40     0.00
## 2034                        Electronic Arts     0.61     0.32     0.01
## 2035                             Activision     0.43     0.42     0.00
## 2036                        Electronic Arts     0.97     0.03     0.00
## 2037                                   Sega     0.44     0.47     0.01
## 2038                              MTV Games     0.93     0.01     0.00
## 2039                        Electronic Arts     0.50     0.39     0.00
## 2040                               Nintendo     0.56     0.05     0.37
## 2041                                    THQ     0.51     0.40     0.00
## 2042                     Hasbro Interactive     0.56     0.38     0.00
## 2043                       Tomy Corporation     0.44     0.46     0.00
## 2044             Disney Interactive Studios     0.56     0.34     0.02
## 2045                                  Atari     0.69     0.04     0.22
## 2046                        Electronic Arts     0.45     0.46     0.00
## 2047                  Acclaim Entertainment     0.87     0.12     0.00
## 2048                      Eidos Interactive     0.00     0.93     0.00
## 2049                        Electronic Arts     0.33     0.45     0.01
## 2050                             Tecmo Koei     0.65     0.22     0.05
## 2051                                Ubisoft     0.58     0.34     0.00
## 2052                                Ubisoft     0.22     0.64     0.00
## 2053                                   Sega     0.00     0.00     1.01
## 2054                                Ubisoft     0.54     0.34     0.02
## 2055                             Tecmo Koei     0.12     0.08     0.74
## 2056                                Ubisoft     0.52     0.36     0.05
## 2057                     Namco Bandai Games     0.50     0.26     0.17
## 2058                     Empire Interactive     0.49     0.38     0.00
## 2059                                 Capcom     0.29     0.19     0.46
## 2060                        Electronic Arts     0.93     0.00     0.00
## 2061            Sony Computer Entertainment     0.41     0.35     0.03
## 2062                             Tecmo Koei     0.30     0.24     0.38
## 2063                                 Capcom     0.65     0.14     0.21
## 2064                               Nintendo     0.63     0.25     0.09
## 2065                               Nintendo     0.65     0.15     0.19
## 2066                               Nintendo     0.41     0.10     0.47
## 2067                      Sammy Corporation     0.00     0.00     1.00
## 2068                     Namco Bandai Games     0.78     0.18     0.03
## 2069           Konami Digital Entertainment     0.13     0.76     0.03
## 2070           Konami Digital Entertainment     0.08     0.90     0.02
## 2071                        Electronic Arts     0.56     0.38     0.00
## 2072            Sony Computer Entertainment     0.56     0.38     0.00
## 2073                        Electronic Arts     0.55     0.38     0.00
## 2074                             Tecmo Koei     0.13     0.10     0.74
## 2075                                Ubisoft     0.33     0.49     0.01
## 2076            Sony Computer Entertainment     0.55     0.38     0.00
## 2077                 Microsoft Game Studios     0.74     0.21     0.00
## 2078                                Ubisoft     0.72     0.17     0.00
## 2079                        Electronic Arts     0.94     0.00     0.00
## 2080                          Vivendi Games     0.77     0.20     0.00
## 2081                                    THQ     0.72     0.20     0.00
## 2082                               Nintendo     0.48     0.06     0.41
## 2083                                Ubisoft     0.49     0.33     0.02
## 2084                         GT Interactive     0.55     0.38     0.00
## 2085            Sony Computer Entertainment     0.30     0.23     0.38
## 2086                            Codemasters     0.27     0.52     0.00
## 2087                             Activision     0.73     0.15     0.00
## 2088                                   Sega     0.76     0.20     0.00
## 2089            Sony Computer Entertainment     0.35     0.52     0.04
## 2090                                 Capcom     0.28     0.04     0.64
## 2091                     Namco Bandai Games     0.37     0.30     0.12
## 2092                     Namco Bandai Games     0.64     0.27     0.00
## 2093                                    THQ     0.61     0.29     0.00
## 2094                                Ubisoft     0.16     0.78     0.00
## 2095                   Take-Two Interactive     0.52     0.27     0.00
## 2096           Konami Digital Entertainment     0.02     0.53     0.19
## 2097                        Electronic Arts     0.58     0.31     0.00
## 2098                            Square Enix     0.37     0.32     0.15
## 2099                        Electronic Arts     0.23     0.64     0.00
## 2100                     Namco Bandai Games     0.28     0.18     0.45
## 2101                     Bethesda Softworks     0.02     0.88     0.00
## 2102                               Nintendo     0.50     0.19     0.28
## 2103                               Nintendo     0.62     0.13     0.21
## 2104                                    THQ     0.86     0.03     0.01
## 2105                        Electronic Arts     0.94     0.04     0.00
## 2106                                    THQ     0.38     0.50     0.00
## 2107                                  Atari     0.91     0.06     0.00
## 2108                        Electronic Arts     0.64     0.26     0.00
## 2109                                Unknown     0.29     0.23     0.38
## 2110                                Ubisoft     0.53     0.24     0.05
## 2111                                Ubisoft     0.57     0.32     0.01
## 2112                        Electronic Arts     0.88     0.00     0.00
## 2113                   Take-Two Interactive     0.88     0.02     0.00
## 2114                        Electronic Arts     0.73     0.21     0.00
## 2115                        Electronic Arts     0.85     0.02     0.00
## 2116                   Take-Two Interactive     0.00     0.93     0.00
## 2117                        Electronic Arts     0.89     0.00     0.00
## 2118                               Nintendo     0.49     0.18     0.29
## 2119                        Electronic Arts     0.62     0.26     0.00
## 2120             Disney Interactive Studios     0.49     0.32     0.00
## 2121                     Namco Bandai Games     0.09     0.01     0.86
## 2122                        Electronic Arts     0.47     0.37     0.00
## 2123                   Take-Two Interactive     0.78     0.03     0.03
## 2124             Disney Interactive Studios     0.53     0.35     0.00
## 2125                                    THQ     0.86     0.04     0.00
## 2126                        Electronic Arts     0.33     0.60     0.00
## 2127                        Electronic Arts     0.40     0.44     0.00
## 2128                                    THQ     0.85     0.04     0.00
## 2129                             Activision     0.59     0.29     0.00
## 2130                             SquareSoft     0.00     0.00     0.97
## 2131                             Activision     0.53     0.34     0.00
## 2132                                  Atari     0.90     0.05     0.00
## 2133 Warner Bros. Interactive Entertainment     0.51     0.37     0.00
## 2134                              LucasArts     0.75     0.19     0.00
## 2135                        Electronic Arts     0.54     0.37     0.00
## 2136            Sony Computer Entertainment     0.38     0.25     0.26
## 2137                                Ubisoft     0.22     0.62     0.00
## 2138                   Take-Two Interactive     0.36     0.41     0.05
## 2139                        Electronic Arts     0.44     0.36     0.00
## 2140                            Square Enix     0.00     0.00     0.96
## 2141            Sony Computer Entertainment     0.54     0.36     0.00
## 2142           Konami Digital Entertainment     0.00     0.00     0.90
## 2143                         GT Interactive     0.72     0.22     0.00
## 2144                            Hudson Soft     0.32     0.06     0.57
## 2145                        Electronic Arts     0.47     0.37     0.00
## 2146                 Focus Home Interactive     0.00     0.81     0.00
## 2147                             Activision     0.47     0.40     0.00
## 2148                                    THQ     0.49     0.37     0.00
## 2149                            Square Enix     0.00     0.00     0.96
## 2150            Sony Computer Entertainment     0.36     0.28     0.22
## 2151                           Midway Games     0.77     0.15     0.00
## 2152                     Namco Bandai Games     0.25     0.56     0.00
## 2153                              505 Games     0.38     0.38     0.06
## 2154                            Global Star     0.88     0.04     0.00
## 2155            Sony Computer Entertainment     0.30     0.43     0.00
## 2156                               Nintendo     0.26     0.29     0.34
## 2157                               Nintendo     0.40     0.36     0.13
## 2158                                Unknown     0.47     0.36     0.00
## 2159                                Play It     0.80     0.03     0.00
## 2160                                Ubisoft     0.30     0.54     0.00
## 2161                                Ubisoft     0.36     0.45     0.00
## 2162                                   Sega     0.54     0.32     0.00
## 2163                                    THQ     0.74     0.19     0.00
## 2164             Disney Interactive Studios     0.46     0.33     0.00
## 2165            Sony Computer Entertainment     0.50     0.27     0.04
## 2166 Warner Bros. Interactive Entertainment     0.84     0.04     0.00
## 2167             Disney Interactive Studios     0.67     0.21     0.00
## 2168                                 Capcom     0.39     0.00     0.53
## 2169           Konami Digital Entertainment     0.03     0.41     0.51
## 2170                                   Sega     0.15     0.13     0.63
## 2171            Sony Computer Entertainment     0.26     0.17     0.46
## 2172                                Ubisoft     0.41     0.32     0.09
## 2173                        Electronic Arts     0.27     0.21     0.41
## 2174                                Ubisoft     0.24     0.52     0.01
## 2175           Konami Digital Entertainment     0.68     0.25     0.00
## 2176                        Electronic Arts     0.53     0.36     0.00
## 2177                             Koch Media     0.65     0.22     0.00
## 2178                        Electronic Arts     0.62     0.24     0.00
## 2179                                   Sega     0.36     0.43     0.00
## 2180                                Ubisoft     0.41     0.46     0.00
## 2181                             Activision     0.41     0.46     0.00
## 2182                                 Capcom     0.29     0.33     0.20
## 2183             Disney Interactive Studios     0.36     0.43     0.00
## 2184                   Take-Two Interactive     0.79     0.05     0.00
## 2185            Sony Computer Entertainment     0.79     0.03     0.00
## 2186                            Codemasters     0.01     0.71     0.01
## 2187             Disney Interactive Studios     0.54     0.32     0.00
## 2188                                    THQ     0.73     0.19     0.00
## 2189                               Nintendo     0.48     0.27     0.13
## 2190                         GT Interactive     0.52     0.36     0.00
## 2191           Konami Digital Entertainment     0.46     0.36     0.00
## 2192                                Ubisoft     0.69     0.16     0.00
## 2193                                Ubisoft     0.34     0.39     0.06
## 2194                                    THQ     0.78     0.03     0.00
## 2195                             Activision     0.39     0.39     0.00
## 2196                        Electronic Arts     0.70     0.20     0.00
## 2197                             SquareSoft     0.10     0.07     0.71
## 2198                                   Sega     0.19     0.06     0.63
## 2199                                    THQ     0.51     0.30     0.01
## 2200                        Electronic Arts     0.87     0.00     0.00
## 2201                        Electronic Arts     0.54     0.27     0.00
## 2202                             Activision     0.69     0.17     0.00
## 2203            Sony Computer Entertainment     0.52     0.35     0.00
## 2204                   Take-Two Interactive     0.75     0.03     0.04
## 2205                            Square Enix     0.23     0.53     0.04
## 2206                                Ubisoft     0.57     0.33     0.00
## 2207            Sony Computer Entertainment     0.46     0.36     0.00
## 2208            Sony Computer Entertainment     0.78     0.03     0.00
## 2209                        Electronic Arts     0.46     0.36     0.00
## 2210                     Namco Bandai Games     0.32     0.32     0.15
## 2211                        Electronic Arts     0.29     0.49     0.00
## 2212                        Electronic Arts     0.81     0.05     0.00
## 2213                                    N/A     0.67     0.25     0.00
## 2214                             Activision     0.59     0.30     0.00
## 2215                        Electronic Arts     0.56     0.28     0.00
## 2216            Sony Computer Entertainment     0.33     0.16     0.36
## 2217            Sony Computer Entertainment     0.27     0.50     0.00
## 2218                                    THQ     0.67     0.25     0.00
## 2219                           Parker Bros.     0.87     0.05     0.00
## 2220                               Nintendo     0.28     0.14     0.47
## 2221                             Activision     0.71     0.20     0.00
## 2222           Konami Digital Entertainment     0.45     0.06     0.42
## 2223                                 Capcom     0.51     0.09     0.32
## 2224                             Activision     0.40     0.43     0.00
## 2225                                Unknown     0.67     0.25     0.00
## 2226                                   Sega     0.51     0.25     0.09
## 2227            Sony Computer Entertainment     0.77     0.03     0.00
## 2228                                    THQ     0.72     0.19     0.00
## 2229                           Game Factory     0.85     0.01     0.00
## 2230                            Square Enix     0.53     0.09     0.27
## 2231                            Codemasters     0.36     0.45     0.02
## 2232                                Level 5     0.00     0.00     0.93
## 2233 Warner Bros. Interactive Entertainment     0.37     0.40     0.00
## 2234                             Activision     0.87     0.00     0.00
## 2235                                Ubisoft     0.52     0.35     0.00
## 2236                                Ubisoft     0.44     0.34     0.00
## 2237 Warner Bros. Interactive Entertainment     0.33     0.43     0.02
## 2238                                Ubisoft     0.28     0.53     0.00
## 2239                   Take-Two Interactive     0.42     0.41     0.00
## 2240           Konami Digital Entertainment     0.45     0.35     0.00
## 2241                               Nintendo     0.17     0.20     0.53
## 2242                                  Titus     0.45     0.35     0.00
## 2243                        Electronic Arts     0.86     0.00     0.00
## 2244                        Electronic Arts     0.51     0.35     0.00
## 2245                                    THQ     0.83     0.03     0.00
## 2246                                    THQ     0.69     0.16     0.00
## 2247                                 Capcom     0.44     0.05     0.39
## 2248            Sony Computer Entertainment     0.68     0.08     0.00
## 2249                                Ubisoft     0.43     0.34     0.00
## 2250                                Ubisoft     0.58     0.26     0.00
## 2251                        Electronic Arts     0.51     0.35     0.00
## 2252                  Acclaim Entertainment     0.51     0.35     0.00
## 2253                               Nintendo     0.39     0.09     0.43
## 2254                        Electronic Arts     0.63     0.27     0.00
## 2255            Sony Computer Entertainment     0.86     0.00     0.00
## 2256                                    THQ     0.55     0.21     0.00
## 2257                        Electronic Arts     0.63     0.20     0.02
## 2258                               Nintendo     0.23     0.42     0.18
## 2259                                    THQ     0.58     0.26     0.00
## 2260                                   Sega     0.71     0.18     0.00
## 2261                     Empire Interactive     0.45     0.35     0.00
## 2262            Sony Computer Entertainment     0.12     0.08     0.66
## 2263                 Microsoft Game Studios     0.30     0.32     0.21
## 2264            Sony Computer Entertainment     0.16     0.57     0.00
## 2265                Marvelous Entertainment     0.41     0.17     0.30
## 2266                             Activision     0.50     0.32     0.00
## 2267                             Activision     0.45     0.35     0.00
## 2268                        Electronic Arts     0.28     0.51     0.02
## 2269                        Electronic Arts     0.52     0.27     0.00
## 2270                   Take-Two Interactive     0.76     0.09     0.00
## 2271                        Electronic Arts     0.45     0.35     0.00
## 2272 Warner Bros. Interactive Entertainment     0.46     0.30     0.00
## 2273                                Ubisoft     0.58     0.24     0.01
## 2274 Warner Bros. Interactive Entertainment     0.36     0.41     0.00
## 2275                                  Genki     0.35     0.27     0.21
## 2276                               Nintendo     0.43     0.25     0.16
## 2277                                Ubisoft     0.01     0.83     0.00
## 2278                     Hasbro Interactive     0.72     0.17     0.00
## 2279                            Codemasters     0.02     0.80     0.02
## 2280                             Tecmo Koei     0.25     0.13     0.46
## 2281                   Take-Two Interactive     0.70     0.11     0.00
## 2282                                Unknown     0.77     0.11     0.00
## 2283                        Electronic Arts     0.35     0.41     0.02
## 2284                                   Sega     0.48     0.32     0.02
## 2285                     Bethesda Softworks     0.84     0.00     0.00
## 2286                            Hudson Soft     0.00     0.00     0.91
## 2287                                   Sega     0.61     0.26     0.00
## 2288                            Codemasters     0.23     0.46     0.05
## 2289                        Electronic Arts     0.44     0.35     0.00
## 2290                 Microsoft Game Studios     0.45     0.26     0.11
## 2291                                 Capcom     0.40     0.28     0.08
## 2292                            Square Enix     0.44     0.39     0.00
## 2293                    ASCII Entertainment     0.00     0.00     0.90
## 2294            Sony Computer Entertainment     0.44     0.35     0.00
## 2295                             Activision     0.68     0.15     0.00
## 2296                        Electronic Arts     0.75     0.03     0.00
## 2297                        Electronic Arts     0.51     0.31     0.01
## 2298                                Ubisoft     0.45     0.37     0.00
## 2299                     Namco Bandai Games     0.48     0.32     0.02
## 2300                                    THQ     0.32     0.39     0.04
## 2301                              Psygnosis     0.50     0.34     0.00
## 2302 Warner Bros. Interactive Entertainment     0.32     0.42     0.02
## 2303                                Ubisoft     0.32     0.42     0.00
## 2304                     Bethesda Softworks     0.32     0.51     0.00
## 2305                            989 Studios     0.50     0.34     0.00
## 2306            Sony Computer Entertainment     0.17     0.13     0.55
## 2307                                    THQ     0.52     0.25     0.00
## 2308                        Electronic Arts     0.63     0.13     0.00
## 2309                                   Sega     0.41     0.43     0.01
## 2310                        Electronic Arts     0.84     0.05     0.00
## 2311                             Activision     0.74     0.03     0.01
## 2312                        Electronic Arts     0.65     0.22     0.00
## 2313             Disney Interactive Studios     0.34     0.46     0.00
## 2314 Warner Bros. Interactive Entertainment     0.42     0.36     0.04
## 2315                             Activision     0.42     0.34     0.00
## 2316                             Activision     0.54     0.27     0.00
## 2317                             Activision     0.62     0.24     0.00
## 2318                        Electronic Arts     0.81     0.05     0.00
## 2319                        Electronic Arts     0.44     0.34     0.00
## 2320 Warner Bros. Interactive Entertainment     0.48     0.34     0.00
## 2321                             Activision     0.62     0.24     0.00
## 2322                                Unknown     0.74     0.03     0.00
## 2323                                    THQ     0.73     0.10     0.00
## 2324           Konami Digital Entertainment     0.60     0.22     0.05
## 2325            Sony Computer Entertainment     0.66     0.11     0.04
## 2326                        Electronic Arts     0.74     0.03     0.00
## 2327                        Electronic Arts     0.17     0.62     0.00
## 2328                               Nintendo     0.46     0.17     0.24
## 2329                               Nintendo     0.42     0.16     0.30
## 2330             Disney Interactive Studios     0.43     0.37     0.00
## 2331                           Midway Games     0.30     0.49     0.00
## 2332                               Nintendo     0.00     0.00     0.89
## 2333            Sony Computer Entertainment     0.72     0.00     0.00
## 2334            Sony Computer Entertainment     0.44     0.27     0.00
## 2335                                    THQ     0.69     0.18     0.00
## 2336 Warner Bros. Interactive Entertainment     0.48     0.33     0.00
## 2337            Sony Computer Entertainment     0.16     0.11     0.56
## 2338                                   Sega     0.44     0.34     0.00
## 2339             Disney Interactive Studios     0.42     0.33     0.00
## 2340                                  Atari     0.38     0.29     0.15
## 2341            Sony Computer Entertainment     0.27     0.35     0.05
## 2342                             Activision     0.56     0.25     0.00
## 2343                        Electronic Arts     0.52     0.25     0.00
## 2344                                Ubisoft     0.36     0.43     0.00
## 2345            Sony Computer Entertainment     0.49     0.34     0.00
## 2346            Sony Computer Entertainment     0.60     0.18     0.00
## 2347                        Electronic Arts     0.28     0.51     0.00
## 2348            Sony Computer Entertainment     0.00     0.68     0.00
## 2349                             Activision     0.47     0.29     0.00
## 2350                             SquareSoft     0.00     0.00     0.89
## 2351                               Nintendo     0.83     0.00     0.00
## 2352            Sony Computer Entertainment     0.28     0.47     0.00
## 2353                        Electronic Arts     0.82     0.00     0.00
## 2354                                   Sega     0.41     0.37     0.01
## 2355                                 Capcom     0.44     0.30     0.09
## 2356                        Electronic Arts     0.38     0.36     0.00
## 2357                             Activision     0.01     0.79     0.00
## 2358                            Square Enix     0.27     0.46     0.00
## 2359                            Codemasters     0.18     0.59     0.01
## 2360                                Ubisoft     0.35     0.37     0.01
## 2361                                 Mojang     0.48     0.33     0.00
## 2362                                Unknown     0.11     0.00     0.77
## 2363                   Take-Two Interactive     0.43     0.34     0.00
## 2364                            Square Enix     0.21     0.12     0.46
## 2365            Sony Computer Entertainment     0.32     0.06     0.00
## 2366                                CTO SpA     0.49     0.33     0.00
## 2367                                Ubisoft     0.80     0.00     0.01
## 2368                                Ubisoft     0.47     0.33     0.00
## 2369                                 Capcom     0.30     0.22     0.30
## 2370                                   Sega     0.50     0.29     0.01
## 2371                              LucasArts     0.50     0.28     0.00
## 2372                   Take-Two Interactive     0.01     0.79     0.00
## 2373                              MTV Games     0.73     0.09     0.00
## 2374                                    THQ     0.44     0.35     0.00
## 2375                            Global Star     0.43     0.33     0.00
## 2376                   Take-Two Interactive     0.38     0.33     0.03
## 2377                 Microsoft Game Studios     0.65     0.19     0.00
## 2378                        Electronic Arts     0.80     0.00     0.00
## 2379                              TalonSoft     0.49     0.33     0.00
## 2380                       Crystal Dynamics     0.49     0.33     0.00
## 2381                            Codemasters     0.15     0.62     0.00
## 2382                    ASCII Entertainment     0.00     0.00     0.87
## 2383                                Ubisoft     0.61     0.24     0.00
## 2384                           Square Enix      0.38     0.40     0.01
## 2385                        Electronic Arts     0.55     0.24     0.01
## 2386           Konami Digital Entertainment     0.32     0.26     0.12
## 2387                             Infogrames     0.43     0.29     0.09
## 2388                              mixi, Inc     0.00     0.00     0.87
## 2389                            Square Enix     0.73     0.03     0.00
## 2390                                   Sega     0.08     0.11     0.62
## 2391                               Pinnacle     0.00     0.81     0.00
## 2392                                Ubisoft     0.62     0.18     0.00
## 2393            Sony Computer Entertainment     0.48     0.33     0.00
## 2394            Sony Computer Entertainment     0.42     0.30     0.01
## 2395                             Activision     0.72     0.03     0.00
## 2396                        Electronic Arts     0.48     0.33     0.00
## 2397                            Codemasters     0.33     0.44     0.01
## 2398                            Codemasters     0.38     0.40     0.00
## 2399            Sony Computer Entertainment     0.20     0.44     0.00
## 2400                                    THQ     0.48     0.29     0.01
## 2401                        Electronic Arts     0.72     0.03     0.00
## 2402                                    SCi     0.48     0.37     0.00
## 2403 Warner Bros. Interactive Entertainment     0.47     0.32     0.00
## 2404                        Electronic Arts     0.43     0.33     0.00
## 2405                              505 Games     0.51     0.27     0.01
## 2406                                Ubisoft     0.47     0.30     0.00
## 2407                    Crave Entertainment     0.30     0.20     0.30
## 2408                             Tecmo Koei     0.11     0.09     0.64
## 2409                                 Quelle     0.81     0.05     0.00
## 2410                        Electronic Arts     0.26     0.42     0.03
## 2411                        Electronic Arts     0.29     0.39     0.02
## 2412            Sony Computer Entertainment     0.10     0.59     0.00
## 2413             Disney Interactive Studios     0.59     0.20     0.00
## 2414                                  Atari     0.59     0.20     0.00
## 2415                            Square Enix     0.00     0.00     0.86
## 2416                                   Sega     0.14     0.54     0.01
## 2417                             Activision     0.34     0.38     0.00
## 2418                               Nintendo     0.46     0.21     0.12
## 2419           Konami Digital Entertainment     0.01     0.72     0.12
## 2420                          Rage Software     0.42     0.33     0.00
## 2421                     Empire Interactive     0.48     0.33     0.00
## 2422                        Electronic Arts     0.81     0.04     0.00
## 2423                             Activision     0.47     0.31     0.00
## 2424            Sony Computer Entertainment     0.48     0.32     0.00
## 2425            Sony Computer Entertainment     0.12     0.51     0.00
## 2426                             Tecmo Koei     0.17     0.13     0.51
## 2427                                    THQ     0.60     0.19     0.00
## 2428                                    3DO     0.47     0.32     0.00
## 2429                        Electronic Arts     0.10     0.65     0.00
## 2430                        Electronic Arts     0.32     0.42     0.02
## 2431                      Eidos Interactive     0.12     0.62     0.00
## 2432                   Take-Two Interactive     0.79     0.00     0.00
## 2433                     Virgin Interactive     0.14     0.09     0.57
## 2434                        Electronic Arts     0.64     0.18     0.00
## 2435           Konami Digital Entertainment     0.40     0.07     0.37
## 2436 Warner Bros. Interactive Entertainment     0.35     0.36     0.00
## 2437                        Electronic Arts     0.37     0.29     0.09
## 2438                         GT Interactive     0.47     0.32     0.00
## 2439                                  Atari     0.22     0.33     0.18
## 2440                                Ubisoft     0.69     0.10     0.00
## 2441                     Namco Bandai Games     0.28     0.31     0.13
## 2442                         Ubisoft Annecy     0.52     0.16     0.08
## 2443                                    THQ     0.31     0.00     0.00
## 2444            Sony Computer Entertainment     0.47     0.32     0.00
## 2445                  Acclaim Entertainment     0.42     0.32     0.00
## 2446                               Nintendo     0.35     0.23     0.21
## 2447                     Virgin Interactive     0.32     0.25     0.20
## 2448                               Nintendo     0.60     0.00     0.20
## 2449                        Electronic Arts     0.79     0.00     0.00
## 2450                                   Sega     0.44     0.30     0.02
## 2451                        Electronic Arts     0.44     0.27     0.01
## 2452                                    THQ     0.35     0.35     0.01
## 2453                             Activision     0.65     0.17     0.00
## 2454 Warner Bros. Interactive Entertainment     0.52     0.24     0.00
## 2455                     Namco Bandai Games     0.20     0.12     0.45
## 2456            Sony Computer Entertainment     0.34     0.36     0.00
## 2457                                    THQ     0.65     0.17     0.00
## 2458                               Nintendo     0.36     0.28     0.14
## 2459                   Take-Two Interactive     0.75     0.01     0.01
## 2460                                Ubisoft     0.46     0.30     0.00
## 2461                  Acclaim Entertainment     0.41     0.32     0.00
## 2462                             SquareSoft     0.32     0.00     0.52
## 2463                        Electronic Arts     0.46     0.25     0.01
## 2464                                    THQ     0.47     0.32     0.00
## 2465                     Empire Interactive     0.41     0.32     0.00
## 2466                     Bethesda Softworks     0.26     0.34     0.13
## 2467            Sony Computer Entertainment     0.24     0.16     0.39
## 2468                                   Sega     0.41     0.32     0.00
## 2469                        Electronic Arts     0.75     0.00     0.00
## 2470                        Electronic Arts     0.28     0.46     0.00
## 2471                              505 Games     0.46     0.28     0.02
## 2472                               Nintendo     0.60     0.22     0.00
## 2473                            D3Publisher     0.09     0.00     0.00
## 2474                        Electronic Arts     0.70     0.05     0.00
## 2475                                  Atari     0.46     0.32     0.00
## 2476                                Ubisoft     0.74     0.04     0.00
## 2477                        Electronic Arts     0.76     0.01     0.00
## 2478            Sony Computer Entertainment     0.22     0.15     0.40
## 2479                                    THQ     0.24     0.19     0.34
## 2480                                Unknown     0.77     0.03     0.00
## 2481                     Namco Bandai Games     0.32     0.32     0.05
## 2482                   Take-Two Interactive     0.52     0.25     0.00
## 2483             Disney Interactive Studios     0.60     0.22     0.00
## 2484                        Electronic Arts     0.27     0.21     0.28
## 2485                        Electronic Arts     0.78     0.00     0.00
## 2486                 Microsoft Game Studios     0.62     0.18     0.01
## 2487                        Electronic Arts     0.37     0.33     0.00
## 2488           Konami Digital Entertainment     0.00     0.00     0.83
## 2489                                    THQ     0.44     0.31     0.00
## 2490                                Unknown     0.46     0.31     0.00
## 2491                                 Capcom     0.39     0.26     0.12
## 2492            Sony Computer Entertainment     0.69     0.03     0.00
## 2493                                Unknown     0.41     0.32     0.00
## 2494                        Electronic Arts     0.45     0.30     0.00
## 2495                                 Capcom     0.42     0.21     0.10
## 2496            Sony Computer Entertainment     0.46     0.31     0.00
## 2497                              Interplay     0.46     0.31     0.00
## 2498                   Take-Two Interactive     0.58     0.17     0.00
## 2499                     Namco Bandai Games     0.43     0.19     0.14
## 2500                        Electronic Arts     0.40     0.26     0.05
## 2501                             Activision     0.55     0.20     0.00
## 2502            Sony Computer Entertainment     0.73     0.00     0.00
## 2503 Warner Bros. Interactive Entertainment     0.60     0.16     0.00
## 2504                        Electronic Arts     0.58     0.22     0.00
## 2505                             Activision     0.64     0.17     0.00
## 2506                             Activision     0.69     0.03     0.00
## 2507                             Activision     0.64     0.12     0.00
## 2508                      Rising Star Games     0.67     0.03     0.06
## 2509                             Activision     0.46     0.21     0.00
## 2510                        Electronic Arts     0.68     0.11     0.00
## 2511                               Nintendo     0.61     0.19     0.00
## 2512                               Nintendo     0.42     0.10     0.28
## 2513           Konami Digital Entertainment     0.51     0.24     0.00
## 2514                        Scholastic Inc.     0.76     0.00     0.00
## 2515                 Microsoft Game Studios     0.69     0.11     0.00
## 2516                                Ubisoft     0.76     0.00     0.00
## 2517                               Mystique     0.76     0.05     0.00
## 2518                           Midway Games     0.40     0.33     0.01
## 2519                                    THQ     0.40     0.31     0.00
## 2520                                  Atlus     0.34     0.04     0.36
## 2521                                 Capcom     0.42     0.19     0.11
## 2522                            Square Enix     0.28     0.38     0.03
## 2523 Warner Bros. Interactive Entertainment     0.25     0.42     0.01
## 2524                       Enix Corporation     0.00     0.00     0.81
## 2525                           Midway Games     0.40     0.31     0.00
## 2526                 Microsoft Game Studios     0.57     0.18     0.00
## 2527                               ChunSoft     0.00     0.00     0.81
## 2528                                Ubisoft     0.40     0.33     0.00
## 2529                     Namco Bandai Games     0.06     0.04     0.66
## 2530                            Hudson Soft     0.00     0.00     0.81
## 2531                        Electronic Arts     0.45     0.31     0.00
## 2532            Sony Computer Entertainment     0.67     0.07     0.00
## 2533                               Nintendo     0.63     0.16     0.00
## 2534           Konami Digital Entertainment     0.00     0.00     0.76
## 2535            Sony Computer Entertainment     0.19     0.41     0.00
## 2536                       Enix Corporation     0.07     0.05     0.63
## 2537                                Ubisoft     0.48     0.25     0.00
## 2538            Sony Computer Entertainment     0.33     0.25     0.07
## 2539                                Unknown     0.00     0.00     0.81
## 2540                                 Capcom     0.45     0.08     0.27
## 2541                                    3DO     0.68     0.12     0.00
## 2542           Konami Digital Entertainment     0.12     0.58     0.03
## 2543                                Ubisoft     0.40     0.31     0.00
## 2544                        Electronic Arts     0.67     0.05     0.00
## 2545                        Electronic Arts     0.75     0.00     0.00
## 2546                               Nintendo     0.00     0.00     0.81
## 2547                                  Atari     0.45     0.31     0.00
## 2548                             Activision     0.33     0.34     0.00
## 2549                                Ubisoft     0.37     0.35     0.00
## 2550           Konami Digital Entertainment     0.00     0.00     0.75
## 2551                            Square Enix     0.35     0.27     0.09
## 2552                        Electronic Arts     0.67     0.03     0.00
## 2553                     Namco Bandai Games     0.42     0.18     0.11
## 2554            Sony Computer Entertainment     0.29     0.39     0.00
## 2555                      Eidos Interactive     0.45     0.30     0.00
## 2556                                   Sega     0.03     0.02     0.74
## 2557             Disney Interactive Studios     0.72     0.03     0.00
## 2558                              LucasArts     0.62     0.16     0.00
## 2559                        Electronic Arts     0.45     0.30     0.00
## 2560                      Eidos Interactive     0.39     0.31     0.00
## 2561                                Level 5     0.20     0.26     0.30
## 2562                             Koch Media     0.52     0.21     0.00
## 2563                              Square EA     0.45     0.30     0.00
## 2564                            Codemasters     0.32     0.39     0.00
## 2565                                Ubisoft     0.48     0.28     0.00
## 2566                            Hudson Soft     0.31     0.33     0.09
## 2567     Sony Computer Entertainment Europe     0.20     0.39     0.04
## 2568           Konami Digital Entertainment     0.09     0.33     0.20
## 2569                             Activision     0.52     0.20     0.00
## 2570                            Square Enix     0.16     0.24     0.28
## 2571                              Banpresto     0.00     0.00     0.75
## 2572                        Electronic Arts     0.68     0.09     0.00
## 2573           Konami Digital Entertainment     0.04     0.33     0.26
## 2574                        Electronic Arts     0.46     0.27     0.00
## 2575                     Namco Bandai Games     0.00     0.00     0.80
## 2576                               Nintendo     0.00     0.00     0.80
## 2577                                Ubisoft     0.73     0.01     0.00
## 2578                        Electronic Arts     0.19     0.38     0.00
## 2579           20th Century Fox Video Games     0.74     0.04     0.00
## 2580                                  Atari     0.66     0.02     0.00
## 2581                             Activision     0.61     0.00     0.00
## 2582                              LucasArts     0.43     0.29     0.00
## 2583            Sony Computer Entertainment     0.00     0.00     0.74
## 2584           Konami Digital Entertainment     0.05     0.30     0.29
## 2585                                Ubisoft     0.61     0.16     0.00
## 2586                                    THQ     0.43     0.29     0.00
## 2587                   Hudson Entertainment     0.00     0.00     0.74
## 2588                                 Capcom     0.24     0.26     0.19
## 2589                   Take-Two Interactive     0.44     0.30     0.00
## 2590                        Electronic Arts     0.75     0.00     0.00
## 2591                                    THQ     0.45     0.27     0.00
## 2592                        Electronic Arts     0.37     0.35     0.01
## 2593                             Activision     0.48     0.24     0.00
## 2594                                 Capcom     0.39     0.07     0.32
## 2595                        Electronic Arts     0.63     0.15     0.00
## 2596           Konami Digital Entertainment     0.64     0.03     0.02
## 2597                                Ubisoft     0.28     0.22     0.23
## 2598                            Square Enix     0.00     0.00     0.79
## 2599                        Electronic Arts     0.47     0.23     0.01
## 2600                                 Capcom     0.42     0.23     0.07
## 2601           Konami Digital Entertainment     0.13     0.42     0.13
## 2602                             Activision     0.31     0.35     0.00
## 2603                               Nintendo     0.75     0.03     0.00
## 2604                 Microsoft Game Studios     0.49     0.22     0.01
## 2605                             Activision     0.51     0.21     0.00
## 2606                        Electronic Arts     0.65     0.03     0.00
## 2607                        Electronic Arts     0.24     0.49     0.00
## 2608                        Electronic Arts     0.08     0.46     0.00
## 2609                            Square Enix     0.32     0.20     0.21
## 2610                       City Interactive     0.27     0.34     0.04
## 2611            Sony Computer Entertainment     0.17     0.50     0.00
## 2612                 Microsoft Game Studios     0.35     0.37     0.00
## 2613                     Virgin Interactive     0.02     0.77     0.00
## 2614                   Take-Two Interactive     0.36     0.29     0.00
## 2615                 Microsoft Game Studios     0.38     0.29     0.03
## 2616                                  Atari     0.73     0.04     0.00
## 2617                        Electronic Arts     0.42     0.25     0.00
## 2618                          Vivendi Games     0.56     0.21     0.00
## 2619                             Infogrames     0.43     0.30     0.00
## 2620                                Ubisoft     0.67     0.04     0.01
## 2621            Sony Computer Entertainment     0.17     0.00     0.00
## 2622                     Namco Bandai Games     0.43     0.27     0.01
## 2623                               Nintendo     0.51     0.09     0.13
## 2624                        Electronic Arts     0.40     0.31     0.00
## 2625                                 Capcom     0.43     0.30     0.00
## 2626                            Deep Silver     0.44     0.26     0.01
## 2627                        Electronic Arts     0.57     0.06     0.00
## 2628                        Electronic Arts     0.43     0.29     0.00
## 2629                              LucasArts     0.61     0.11     0.00
## 2630                            Square Enix     0.49     0.04     0.21
## 2631                                    THQ     0.71     0.01     0.00
## 2632                   Take-Two Interactive     0.49     0.19     0.01
## 2633                   Take-Two Interactive     0.65     0.02     0.00
## 2634                               ChunSoft     0.00     0.00     0.78
## 2635                                  Atari     0.72     0.05     0.00
## 2636                        Electronic Arts     0.60     0.16     0.00
## 2637                               Nintendo     0.37     0.22     0.13
## 2638                             Activision     0.33     0.33     0.00
## 2639            Sony Computer Entertainment     0.43     0.29     0.00
## 2640                                Ubisoft     0.38     0.32     0.00
## 2641                                  Atari     0.72     0.05     0.00
## 2642                                   Sega     0.36     0.34     0.00
## 2643                 Microsoft Game Studios     0.12     0.56     0.00
## 2644                        Electronic Arts     0.43     0.29     0.00
## 2645                              Interplay     0.43     0.29     0.00
## 2646                           Men-A-Vision     0.72     0.04     0.00
## 2647                                   Sega     0.45     0.23     0.02
## 2648                        Electronic Arts     0.24     0.33     0.01
## 2649                 Microsoft Game Studios     0.66     0.02     0.03
## 2650                        Electronic Arts     0.64     0.02     0.00
## 2651                             Activision     0.72     0.04     0.00
## 2652                        Electronic Arts     0.43     0.29     0.00
## 2653                                Ubisoft     0.18     0.49     0.00
## 2654                                Ubisoft     0.34     0.35     0.00
## 2655                                 Capcom     0.55     0.14     0.03
## 2656                                    THQ     0.53     0.18     0.00
## 2657                                  Atari     0.72     0.04     0.00
## 2658                                    THQ     0.11     0.43     0.00
## 2659                                Ubisoft     0.41     0.30     0.00
## 2660                                    THQ     0.53     0.22     0.00
## 2661                       Enix Corporation     0.00     0.00     0.77
## 2662                                    THQ     0.55     0.20     0.00
## 2663                                   Sega     0.42     0.21     0.08
## 2664                                    SCi     0.38     0.29     0.00
## 2665                                 Capcom     0.38     0.29     0.00
## 2666                               Nintendo     0.45     0.17     0.14
## 2667                  Acclaim Entertainment     0.38     0.29     0.00
## 2668                                  Atari     0.10     0.08     0.56
## 2669                               Nintendo     0.21     0.14     0.38
## 2670                     Namco Bandai Games     0.37     0.19     0.11
## 2671            Sony Computer Entertainment     0.71     0.00     0.00
## 2672                               Nintendo     0.21     0.32     0.17
## 2673                                   Sega     0.37     0.04     0.00
## 2674                       Activision Value     0.37     0.29     0.00
## 2675                              Psygnosis     0.18     0.12     0.42
## 2676                               Nintendo     0.28     0.30     0.12
## 2677                 Microsoft Game Studios     0.32     0.35     0.00
## 2678                        Electronic Arts     0.15     0.50     0.00
## 2679                                Nobilis     0.61     0.09     0.00
## 2680                                  Atari     0.36     0.38     0.00
## 2681                              LucasArts     0.64     0.02     0.00
## 2682                     Avanquest Software     0.40     0.23     0.03
## 2683                           Gotham Games     0.37     0.29     0.00
## 2684                     Virgin Interactive     0.17     0.11     0.43
## 2685           Konami Digital Entertainment     0.00     0.00     0.71
## 2686                        Electronic Arts     0.23     0.31     0.03
## 2687                               Nintendo     0.57     0.04     0.11
## 2688                               Nintendo     0.32     0.28     0.10
## 2689                              LucasArts     0.38     0.23     0.00
## 2690                                   Sega     0.37     0.32     0.00
## 2691                             Activision     0.59     0.16     0.00
## 2692                             SquareSoft     0.00     0.00     0.76
## 2693                     Namco Bandai Games     0.00     0.00     0.76
## 2694                                 Capcom     0.09     0.03     0.62
## 2695                     Bethesda Softworks     0.44     0.25     0.00
## 2696            Sony Computer Entertainment     0.37     0.29     0.00
## 2697                        Electronic Arts     0.11     0.29     0.00
## 2698                        Electronic Arts     0.30     0.37     0.03
## 2699                           Midway Games     0.61     0.12     0.00
## 2700             Disney Interactive Studios     0.54     0.20     0.00
## 2701                             Activision     0.45     0.23     0.00
## 2702             Disney Interactive Studios     0.41     0.27     0.00
## 2703                                 Capcom     0.31     0.24     0.13
## 2704                         Valve Software     0.33     0.32     0.00
## 2705                   Take-Two Interactive     0.33     0.31     0.00
## 2706                              LucasArts     0.52     0.18     0.00
## 2707                  Acclaim Entertainment     0.37     0.29     0.00
## 2708                             Activision     0.57     0.02     0.07
## 2709                                 Capcom     0.38     0.23     0.08
## 2710                      Eidos Interactive     0.36     0.31     0.01
## 2711                               Nintendo     0.16     0.29     0.26
## 2712                             SquareSoft     0.00     0.00     0.76
## 2713                        Electronic Arts     0.28     0.39     0.00
## 2714                                    THQ     0.21     0.00     0.00
## 2715                               Nintendo     0.00     0.48     0.25
## 2716                                   Sega     0.69     0.00     0.00
## 2717                                 Capcom     0.30     0.21     0.20
## 2718                               Nintendo     0.03     0.66     0.02
## 2719                        Electronic Arts     0.34     0.25     0.05
## 2720            Sony Computer Entertainment     0.18     0.37     0.06
## 2721           Konami Digital Entertainment     0.41     0.26     0.01
## 2722                   Take-Two Interactive     0.28     0.38     0.00
## 2723                                    THQ     0.28     0.39     0.00
## 2724                               Nintendo     0.26     0.19     0.27
## 2725                             Activision     0.47     0.19     0.00
## 2726                                    THQ     0.41     0.20     0.00
## 2727 Warner Bros. Interactive Entertainment     0.41     0.28     0.00
## 2728                     Namco Bandai Games     0.35     0.23     0.07
## 2729                             Activision     0.37     0.29     0.00
## 2730                         GT Interactive     0.63     0.11     0.00
## 2731           Konami Digital Entertainment     0.30     0.24     0.13
## 2732                     Virgin Interactive     0.28     0.19     0.23
## 2733                      Eidos Interactive     0.29     0.32     0.01
## 2734                    Big Ben Interactive     0.66     0.04     0.00
## 2735           Konami Digital Entertainment     0.09     0.45     0.11
## 2736                             Activision     0.48     0.24     0.00
## 2737                        Electronic Arts     0.69     0.00     0.00
## 2738                           Nordic Games     0.00     0.67     0.00
## 2739                                Ubisoft     0.21     0.46     0.00
## 2740                                 Capcom     0.22     0.17     0.30
## 2741                        Electronic Arts     0.62     0.02     0.00
## 2742                             Touchstone     0.46     0.20     0.01
## 2743                            Square Enix     0.33     0.23     0.08
## 2744           Konami Digital Entertainment     0.28     0.29     0.00
## 2745                            Square Enix     0.38     0.03     0.30
## 2746                               Nintendo     0.00     0.00     0.74
## 2747            Sony Computer Entertainment     0.36     0.28     0.00
## 2748                        Electronic Arts     0.38     0.25     0.00
## 2749                             Activision     0.41     0.23     0.00
## 2750                  Acclaim Entertainment     0.36     0.28     0.00
## 2751             Disney Interactive Studios     0.66     0.02     0.00
## 2752                               Nintendo     0.00     0.03     0.72
## 2753           Konami Digital Entertainment     0.42     0.16     0.15
## 2754                        Electronic Arts     0.41     0.21     0.01
## 2755                           Midway Games     0.67     0.01     0.00
## 2756                        Electronic Arts     0.16     0.37     0.01
## 2757                     Namco Bandai Games     0.48     0.18     0.01
## 2758                                   Sega     0.29     0.37     0.00
## 2759                                Ubisoft     0.14     0.48     0.00
## 2760                            Square Enix     0.29     0.27     0.06
## 2761                             Activision     0.36     0.28     0.00
## 2762                   Take-Two Interactive     0.61     0.10     0.00
## 2763                                 Capcom     0.14     0.29     0.22
## 2764                                Ubisoft     0.42     0.19     0.00
## 2765                        Electronic Arts     0.53     0.20     0.00
## 2766                        Electronic Arts     0.36     0.28     0.00
## 2767                            Square Enix     0.17     0.13     0.37
## 2768                                    THQ     0.33     0.27     0.02
## 2769                     Bethesda Softworks     0.41     0.27     0.00
## 2770            Sony Computer Entertainment     0.41     0.28     0.00
## 2771                     Namco Bandai Games     0.30     0.15     0.22
## 2772                             Activision     0.31     0.31     0.00
## 2773                                  Atari     0.59     0.12     0.00
## 2774                                Unknown     0.16     0.06     0.50
## 2775 Warner Bros. Interactive Entertainment     0.33     0.28     0.00
## 2776                        Electronic Arts     0.16     0.45     0.00
## 2777                                  Atari     0.32     0.17     0.19
## 2778            Sony Computer Entertainment     0.67     0.00     0.00
## 2779 Warner Bros. Interactive Entertainment     0.31     0.35     0.02
## 2780                                  Atari     0.68     0.00     0.00
## 2781                   Take-Two Interactive     0.45     0.12     0.03
## 2782                               Nintendo     0.31     0.11     0.30
## 2783                        Electronic Arts     0.05     0.55     0.03
## 2784                             Activision     0.49     0.15     0.00
## 2785                        Electronic Arts     0.33     0.34     0.00
## 2786                                   Sega     0.20     0.21     0.24
## 2787                             Activision     0.41     0.25     0.00
## 2788             Disney Interactive Studios     0.17     0.41     0.00
## 2789                        Electronic Arts     0.14     0.09     0.46
## 2790                             Activision     0.43     0.24     0.00
## 2791                     Namco Bandai Games     0.00     0.00     0.73
## 2792                     Avanquest Software     0.55     0.13     0.00
## 2793                        Electronic Arts     0.22     0.37     0.00
## 2794                               Nintendo     0.40     0.15     0.17
## 2795                      Rising Star Games     0.58     0.08     0.02
## 2796             Disney Interactive Studios     0.31     0.30     0.01
## 2797                               Nintendo     0.00     0.00     0.73
## 2798                         GT Interactive     0.55     0.17     0.00
## 2799                                    THQ     0.49     0.17     0.00
## 2800                               Nintendo     0.16     0.02     0.53
## 2801                        Fox Interactive     0.41     0.28     0.00
## 2802                            Square Enix     0.36     0.29     0.02
## 2803                               Nintendo     0.00     0.00     0.73
## 2804                                  Atari     0.54     0.16     0.00
## 2805                                  Atlus     0.30     0.11     0.24
## 2806                                  Atari     0.68     0.04     0.00
## 2807                     Bethesda Softworks     0.29     0.32     0.01
## 2808                        Electronic Arts     0.61     0.07     0.00
## 2809                        Electronic Arts     0.67     0.00     0.00
## 2810                               Nintendo     0.00     0.00     0.73
## 2811                                    THQ     0.54     0.16     0.00
## 2812 Warner Bros. Interactive Entertainment     0.26     0.35     0.00
## 2813                     Namco Bandai Games     0.47     0.02     0.17
## 2814                                Ubisoft     0.38     0.29     0.00
## 2815                                  Atari     0.52     0.19     0.00
## 2816 Warner Bros. Interactive Entertainment     0.24     0.37     0.00
## 2817                     Namco Bandai Games     0.27     0.24     0.14
## 2818                            Codemasters     0.36     0.28     0.00
## 2819                        Electronic Arts     0.56     0.15     0.00
## 2820                      Rising Star Games     0.43     0.01     0.25
## 2821                                Ubisoft     0.52     0.19     0.00
## 2822                             Activision     0.60     0.02     0.00
## 2823                        Electronic Arts     0.23     0.42     0.00
## 2824                                Ubisoft     0.34     0.31     0.00
## 2825            Sony Computer Entertainment     0.47     0.13     0.02
## 2826                     Namco Bandai Games     0.00     0.00     0.67
## 2827                                Ubisoft     0.35     0.30     0.00
## 2828                                Unknown     0.00     0.00     0.72
## 2829                         GT Interactive     0.40     0.27     0.00
## 2830                                   Sega     0.12     0.53     0.00
## 2831                        Electronic Arts     0.59     0.02     0.01
## 2832                            Square Enix     0.28     0.15     0.22
## 2833                        Electronic Arts     0.53     0.17     0.00
## 2834                             Activision     0.36     0.29     0.00
## 2835                        Electronic Arts     0.60     0.02     0.00
## 2836                                    THQ     0.66     0.00     0.00
## 2837                                  Atari     0.40     0.27     0.00
## 2838                                  Spike     0.67     0.00     0.00
## 2839                                   Sega     0.00     0.00     0.70
## 2840                   Nippon Ichi Software     0.34     0.07     0.27
## 2841    Sony Computer Entertainment America     0.58     0.00     0.00
## 2842                             Activision     0.40     0.27     0.00
## 2843                               Nintendo     0.36     0.00     0.32
## 2844            Sony Computer Entertainment     0.35     0.28     0.00
## 2845                                  Atari     0.67     0.04     0.00
## 2846                        Electronic Arts     0.62     0.04     0.00
## 2847            Sony Computer Entertainment     0.66     0.00     0.00
## 2848                   Take-Two Interactive     0.46     0.19     0.01
## 2849             Disney Interactive Studios     0.24     0.37     0.00
## 2850                                Unknown     0.68     0.00     0.00
## 2851                                  Atari     0.51     0.19     0.00
## 2852                     Namco Bandai Games     0.21     0.46     0.00
## 2853                            Codemasters     0.11     0.50     0.01
## 2854                     Namco Bandai Games     0.05     0.04     0.61
## 2855            Sony Computer Entertainment     0.66     0.00     0.00
## 2856                                    THQ     0.52     0.14     0.00
## 2857                             Activision     0.22     0.36     0.02
## 2858                                Ubisoft     0.32     0.32     0.00
## 2859                      Eidos Interactive     0.40     0.27     0.00
## 2860                        Electronic Arts     0.19     0.53     0.00
## 2861                            Codemasters     0.23     0.40     0.01
## 2862                        Electronic Arts     0.45     0.24     0.00
## 2863                        Electronic Arts     0.67     0.02     0.00
## 2864                        Electronic Arts     0.62     0.03     0.00
## 2865                             Activision     0.66     0.01     0.00
## 2866                   Take-Two Interactive     0.27     0.36     0.00
## 2867                            D3Publisher     0.23     0.30     0.00
## 2868                                   Sega     0.35     0.27     0.00
## 2869                        Electronic Arts     0.00     0.69     0.00
## 2870                      Eidos Interactive     0.23     0.15     0.29
## 2871                        Electronic Arts     0.62     0.04     0.00
## 2872                     Jester Interactive     0.35     0.27     0.00
## 2873                                  Atari     0.55     0.14     0.00
## 2874                  Acclaim Entertainment     0.40     0.27     0.00
## 2875                 Microsoft Game Studios     0.49     0.20     0.00
## 2876           Konami Digital Entertainment     0.35     0.27     0.00
## 2877           Konami Digital Entertainment     0.49     0.13     0.07
## 2878                  Universal Interactive     0.55     0.14     0.00
## 2879                                    THQ     0.51     0.19     0.00
## 2880                                    THQ     0.35     0.27     0.00
## 2881                        Electronic Arts     0.60     0.04     0.00
## 2882                               Nintendo     0.39     0.09     0.17
## 2883                             LEGO Media     0.51     0.18     0.00
## 2884                  Acclaim Entertainment     0.57     0.13     0.00
## 2885                                  Quest     0.00     0.00     0.71
## 2886                        Electronic Arts     0.65     0.00     0.00
## 2887                               Nintendo     0.20     0.05     0.44
## 2888                        Electronic Arts     0.50     0.14     0.00
## 2889            Sony Computer Entertainment     0.15     0.10     0.41
## 2890                     Namco Bandai Games     0.24     0.27     0.09
## 2891                             Tecmo Koei     0.18     0.07     0.41
## 2892                     Hasbro Interactive     0.39     0.27     0.00
## 2893                  Acclaim Entertainment     0.39     0.27     0.00
## 2894                        Electronic Arts     0.65     0.00     0.00
## 2895                             Activision     0.53     0.15     0.00
## 2896                        Electronic Arts     0.38     0.26     0.00
## 2897                            Square Enix     0.18     0.01     0.50
## 2898                        SouthPeak Games     0.41     0.22     0.00
## 2899                             Activision     0.54     0.14     0.00
## 2900                             Activision     0.35     0.21     0.00
## 2901                            Hudson Soft     0.00     0.00     0.70
## 2902                        Electronic Arts     0.65     0.00     0.00
## 2903                     Virgin Interactive     0.39     0.27     0.00
## 2904                             Activision     0.38     0.26     0.00
## 2905                             Activision     0.52     0.16     0.00
## 2906                                 Capcom     0.23     0.14     0.30
## 2907            Sony Computer Entertainment     0.34     0.27     0.00
## 2908                            Deep Silver     0.30     0.14     0.20
## 2909                        Electronic Arts     0.54     0.14     0.00
## 2910                  Majesco Entertainment     0.50     0.19     0.00
## 2911                                  Atari     0.34     0.27     0.00
## 2912                        Electronic Arts     0.39     0.27     0.00
## 2913                 Microsoft Game Studios     0.48     0.19     0.00
## 2914                            Square Enix     0.34     0.18     0.12
## 2915                        Electronic Arts     0.13     0.49     0.00
## 2916                             SquareSoft     0.04     0.03     0.58
## 2917                             Activision     0.23     0.41     0.00
## 2918 Warner Bros. Interactive Entertainment     0.16     0.43     0.01
## 2919                        Electronic Arts     0.55     0.10     0.00
## 2920                               Nintendo     0.50     0.19     0.00
## 2921                        Electronic Arts     0.34     0.27     0.00
## 2922                        Electronic Arts     0.39     0.26     0.00
## 2923                                    THQ     0.22     0.31     0.00
## 2924                     Illusion Softworks     0.34     0.27     0.00
## 2925             Disney Interactive Studios     0.38     0.25     0.00
## 2926            Sony Computer Entertainment     0.52     0.00     0.12
## 2927                     Namco Bandai Games     0.16     0.13     0.36
## 2928            Sony Computer Entertainment     0.64     0.00     0.00
## 2929                      Eidos Interactive     0.34     0.27     0.00
## 2930           Konami Digital Entertainment     0.42     0.22     0.00
## 2931                                Ubisoft     0.25     0.37     0.00
## 2932                               Nintendo     0.37     0.14     0.17
## 2933                               Nintendo     0.00     0.00     0.70
## 2934             Disney Interactive Studios     0.50     0.18     0.00
## 2935                             Activision     0.18     0.36     0.02
## 2936                            Tigervision     0.65     0.04     0.00
## 2937                                 Mojang     0.25     0.33     0.00
## 2938                        Electronic Arts     0.39     0.26     0.00
## 2939           Konami Digital Entertainment     0.26     0.00     0.26
## 2940 Warner Bros. Interactive Entertainment     0.41     0.22     0.00
## 2941                               Nintendo     0.24     0.19     0.22
## 2942                 Microsoft Game Studios     0.54     0.13     0.00
## 2943                           Midway Games     0.58     0.02     0.00
## 2944                             Activision     0.28     0.30     0.00
## 2945                                 Mojang     0.27     0.31     0.00
## 2946                        Electronic Arts     0.18     0.44     0.00
## 2947 Warner Bros. Interactive Entertainment     0.28     0.31     0.05
## 2948                                Ubisoft     0.38     0.25     0.00
## 2949                                    THQ     0.64     0.00     0.00
## 2950                               Nintendo     0.50     0.18     0.00
## 2951                     Namco Bandai Games     0.00     0.00     0.69
## 2952                     Namco Bandai Games     0.00     0.00     0.69
## 2953                                  Atari     0.53     0.14     0.00
## 2954            Sony Computer Entertainment     0.38     0.26     0.00
## 2955                        Electronic Arts     0.30     0.33     0.00
## 2956                        Electronic Arts     0.39     0.23     0.00
## 2957                        Electronic Arts     0.46     0.17     0.00
## 2958                        Electronic Arts     0.31     0.30     0.00
## 2959                        Electronic Arts     0.53     0.14     0.00
## 2960                                Ubisoft     0.19     0.36     0.01
## 2961                             Activision     0.42     0.21     0.00
## 2962                        Electronic Arts     0.53     0.14     0.00
## 2963                        Electronic Arts     0.28     0.32     0.00
## 2964 Warner Bros. Interactive Entertainment     0.39     0.24     0.00
## 2965                   Take-Two Interactive     0.17     0.39     0.00
## 2966                             Activision     0.54     0.09     0.00
## 2967                              Interplay     0.34     0.26     0.00
## 2968                             Activision     0.49     0.18     0.00
## 2969                              505 Games     0.34     0.25     0.00
## 2970                                  Atari     0.30     0.31     0.00
## 2971                              LucasArts     0.38     0.26     0.00
## 2972                                    THQ     0.42     0.20     0.00
## 2973                        Electronic Arts     0.62     0.04     0.00
## 2974                 Microsoft Game Studios     0.28     0.17     0.18
## 2975                                    THQ     0.55     0.08     0.00
## 2976                            Square Enix     0.25     0.20     0.18
## 2977                        Electronic Arts     0.63     0.02     0.00
## 2978                         GT Interactive     0.38     0.26     0.00
## 2979            Sony Computer Entertainment     0.52     0.08     0.01
## 2980                       Tomy Corporation     0.53     0.14     0.00
## 2981                              505 Games     0.24     0.34     0.00
## 2982                                Ubisoft     0.57     0.02     0.00
## 2983            Sony Computer Entertainment     0.21     0.11     0.28
## 2984                              LucasArts     0.54     0.11     0.00
## 2985                             SquareSoft     0.25     0.17     0.22
## 2986           Konami Digital Entertainment     0.15     0.10     0.38
## 2987                                   Sega     0.32     0.25     0.00
## 2988                        Electronic Arts     0.29     0.38     0.00
## 2989                        Electronic Arts     0.51     0.15     0.00
## 2990            Sony Computer Entertainment     0.28     0.22     0.11
## 2991                                  Atari     0.23     0.18     0.20
## 2992                     Bethesda Softworks     0.34     0.28     0.00
## 2993                                    THQ     0.63     0.00     0.00
## 2994 Warner Bros. Interactive Entertainment     0.14     0.36     0.00
## 2995                           Midway Games     0.33     0.26     0.00
## 2996                               Nintendo     0.33     0.00     0.33
## 2997                             Activision     0.49     0.16     0.00
## 2998                                Unknown     0.44     0.16     0.00
## 2999                             Activision     0.26     0.29     0.02
## 3000                        Electronic Arts     0.37     0.25     0.00
## 3001                        Electronic Arts     0.00     0.59     0.00
## 3002           Konami Digital Entertainment     0.37     0.25     0.00
## 3003                        Electronic Arts     0.46     0.18     0.00
## 3004            Sony Computer Entertainment     0.14     0.39     0.00
## 3005                         Rocket Company     0.00     0.00     0.67
## 3006            Sony Computer Entertainment     0.37     0.25     0.00
## 3007                     Bethesda Softworks     0.35     0.25     0.00
## 3008                               Metro 3D     0.22     0.17     0.23
## 3009                             Activision     0.48     0.17     0.00
## 3010                     Namco Bandai Games     0.00     0.00     0.67
## 3011                                   Sega     0.06     0.48     0.00
## 3012 Warner Bros. Interactive Entertainment     0.24     0.31     0.01
## 3013                             Touchstone     0.35     0.21     0.01
## 3014            Sony Computer Entertainment     0.19     0.13     0.31
## 3015                              505 Games     0.35     0.27     0.00
## 3016                                Ubisoft     0.54     0.03     0.04
## 3017                                Ubisoft     0.00     0.66     0.00
## 3018                        Electronic Arts     0.20     0.35     0.00
## 3019                                    THQ     0.33     0.25     0.00
## 3020                                   Sega     0.16     0.36     0.00
## 3021                           Midway Games     0.33     0.23     0.00
## 3022                     Mattel Interactive     0.63     0.03     0.00
## 3023                               Nintendo     0.31     0.00     0.34
## 3024                        Electronic Arts     0.38     0.22     0.00
## 3025             Disney Interactive Studios     0.48     0.18     0.00
## 3026             Disney Interactive Studios     0.46     0.16     0.00
## 3027                        Electronic Arts     0.01     0.64     0.00
## 3028                           IE Institute     0.00     0.00     0.66
## 3029                   Take-Two Interactive     0.37     0.25     0.00
## 3030                        Electronic Arts     0.49     0.15     0.00
## 3031                            Square Enix     0.22     0.01     0.42
## 3032                             Activision     0.59     0.03     0.00
## 3033                                Ubisoft     0.35     0.22     0.00
## 3034                                    THQ     0.33     0.20     0.00
## 3035                             Activision     0.26     0.30     0.00
## 3036                            Codemasters     0.09     0.45     0.03
## 3037                             Activision     0.55     0.02     0.00
## 3038                   Take-Two Interactive     0.20     0.33     0.00
## 3039                           Funbox Media     0.58     0.04     0.00
## 3040            Sony Computer Entertainment     0.32     0.25     0.00
## 3041                                  Atari     0.26     0.01     0.13
## 3042                        Electronic Arts     0.01     0.54     0.00
## 3043                        Electronic Arts     0.37     0.25     0.00
## 3044                        Electronic Arts     0.37     0.25     0.00
## 3045                        Electronic Arts     0.32     0.25     0.00
## 3046                             Activision     0.36     0.24     0.00
## 3047                                    THQ     0.48     0.16     0.00
## 3048                                  Atari     0.55     0.02     0.00
## 3049                             Activision     0.51     0.10     0.00
## 3050           Konami Digital Entertainment     0.00     0.00     0.66
## 3051                             Activision     0.52     0.13     0.00
## 3052           Konami Digital Entertainment     0.42     0.17     0.01
## 3053                                    GSP     0.18     0.43     0.00
## 3054                        Electronic Arts     0.51     0.10     0.00
## 3055                               Nintendo     0.12     0.52     0.00
## 3056                     Namco Bandai Games     0.00     0.00     0.66
## 3057                                Ubisoft     0.18     0.40     0.00
## 3058                       Enix Corporation     0.00     0.00     0.64
## 3059                  Majesco Entertainment     0.47     0.18     0.00
## 3060                                 Capcom     0.32     0.25     0.00
## 3061            Sony Computer Entertainment     0.37     0.25     0.00
## 3062                        Electronic Arts     0.51     0.10     0.00
## 3063                                   Sega     0.02     0.53     0.00
## 3064                            Deep Silver     0.22     0.30     0.04
## 3065                        Electronic Arts     0.50     0.08     0.00
## 3066                                Ubisoft     0.25     0.33     0.03
## 3067                        Electronic Arts     0.43     0.20     0.00
## 3068                   Take-Two Interactive     0.29     0.30     0.00
## 3069                             Activision     0.62     0.04     0.00
## 3070                                    THQ     0.22     0.27     0.00
## 3071 Warner Bros. Interactive Entertainment     0.27     0.20     0.11
## 3072                                Ubisoft     0.33     0.22     0.01
## 3073                         TDK Mediactive     0.47     0.17     0.00
## 3074           Konami Digital Entertainment     0.17     0.13     0.30
## 3075                     Namco Bandai Games     0.03     0.00     0.62
## 3076                         Ubisoft Annecy     0.06     0.03     0.55
## 3077                        Electronic Arts     0.22     0.32     0.01
## 3078             Disney Interactive Studios     0.47     0.17     0.00
## 3079                     Namco Bandai Games     0.00     0.19     0.42
## 3080            Sony Computer Entertainment     0.12     0.08     0.41
## 3081                                Ubisoft     0.49     0.14     0.00
## 3082 Warner Bros. Interactive Entertainment     0.34     0.25     0.00
## 3083                     Namco Bandai Games     0.00     0.00     0.66
## 3084                              ASC Games     0.36     0.25     0.00
## 3085 Warner Bros. Interactive Entertainment     0.38     0.22     0.00
## 3086                             Activision     0.24     0.00     0.00
## 3087            Sony Computer Entertainment     0.15     0.10     0.32
## 3088                                Ubisoft     0.36     0.24     0.00
## 3089             Disney Interactive Studios     0.39     0.21     0.00
## 3090            Sony Computer Entertainment     0.30     0.25     0.00
## 3091                                Ubisoft     0.31     0.23     0.01
## 3092                            Square Enix     0.18     0.14     0.29
## 3093                                    THQ     0.48     0.12     0.00
## 3094                                Ubisoft     0.00     0.57     0.00
## 3095                               Nintendo     0.41     0.11     0.12
## 3096             Disney Interactive Studios     0.32     0.25     0.00
## 3097                 Microsoft Game Studios     0.33     0.25     0.00
## 3098                               Nintendo     0.25     0.09     0.30
## 3099                                Ubisoft     0.32     0.25     0.00
## 3100                                    THQ     0.47     0.17     0.00
## 3101                        Electronic Arts     0.34     0.22     0.00
## 3102                       Enix Corporation     0.02     0.01     0.58
## 3103 Warner Bros. Interactive Entertainment     0.42     0.13     0.00
## 3104                             Activision     0.23     0.26     0.00
## 3105                        Electronic Arts     0.35     0.23     0.00
## 3106                               Nintendo     0.47     0.17     0.00
## 3107                               Nintendo     0.28     0.02     0.33
## 3108                                  Atari     0.36     0.25     0.00
## 3109                               Nintendo     0.30     0.13     0.18
## 3110                            Square Enix     0.19     0.15     0.26
## 3111            Sony Computer Entertainment     0.00     0.50     0.00
## 3112                             Activision     0.60     0.04     0.00
## 3113              Sony Online Entertainment     0.32     0.25     0.00
## 3114                        Electronic Arts     0.54     0.02     0.00
## 3115             Disney Interactive Studios     0.27     0.24     0.00
## 3116            Sony Computer Entertainment     0.00     0.05     0.00
## 3117                  Acclaim Entertainment     0.36     0.24     0.00
## 3118                                    THQ     0.35     0.18     0.00
## 3119             Disney Interactive Studios     0.37     0.22     0.00
## 3120                        Electronic Arts     0.39     0.20     0.00
## 3121                             Activision     0.29     0.28     0.01
## 3122                              Banpresto     0.00     0.00     0.65
## 3123                                    THQ     0.29     0.22     0.00
## 3124                 Focus Home Interactive     0.03     0.58     0.00
## 3125                              505 Games     0.39     0.19     0.01
## 3126                     Namco Bandai Games     0.00     0.00     0.65
## 3127            Sony Computer Entertainment     0.24     0.29     0.01
## 3128                   Take-Two Interactive     0.32     0.16     0.01
## 3129                        Electronic Arts     0.13     0.07     0.00
## 3130                          Vivendi Games     0.46     0.17     0.00
## 3131                                Ubisoft     0.22     0.38     0.00
## 3132                        Electronic Arts     0.27     0.31     0.00
## 3133                          Vivendi Games     0.32     0.25     0.00
## 3134                          Vivendi Games     0.32     0.25     0.00
## 3135 Warner Bros. Interactive Entertainment     0.33     0.23     0.03
## 3136                   Take-Two Interactive     0.47     0.15     0.00
## 3137           Konami Digital Entertainment     0.22     0.13     0.22
## 3138                                    THQ     0.44     0.14     0.00
## 3139                        Electronic Arts     0.54     0.02     0.00
## 3140                   Take-Two Interactive     0.38     0.20     0.00
## 3141                                    THQ     0.59     0.00     0.00
## 3142                            Square Enix     0.20     0.13     0.22
## 3143                        Electronic Arts     0.43     0.19     0.00
## 3144                             Activision     0.31     0.24     0.00
## 3145                        Electronic Arts     0.57     0.04     0.00
## 3146                Red Storm Entertainment     0.48     0.15     0.00
## 3147           Konami Digital Entertainment     0.44     0.10     0.04
## 3148                                Ubisoft     0.40     0.22     0.00
## 3149                                    N/A     0.46     0.17     0.00
## 3150                                Ubisoft     0.23     0.35     0.00
## 3151                                   Sega     0.00     0.60     0.00
## 3152                               Nintendo     0.28     0.12     0.19
## 3153                      Eidos Interactive     0.29     0.33     0.00
## 3154                                 Capcom     0.15     0.12     0.34
## 3155                                 Capcom     0.17     0.04     0.40
## 3156                                    THQ     0.25     0.31     0.00
## 3157                             Rondomedia     0.56     0.04     0.00
## 3158                     Bethesda Softworks     0.22     0.32     0.00
## 3159                                    THQ     0.30     0.27     0.00
## 3160                                    N/A     0.46     0.17     0.00
## 3161           Konami Digital Entertainment     0.46     0.17     0.00
## 3162                                Ubisoft     0.25     0.34     0.00
## 3163                     Namco Bandai Games     0.49     0.09     0.01
## 3164            Sony Computer Entertainment     0.31     0.24     0.00
## 3165                        Electronic Arts     0.60     0.03     0.00
## 3166                               Nintendo     0.59     0.04     0.00
## 3167                        Electronic Arts     0.33     0.21     0.00
## 3168                             Tecmo Koei     0.23     0.14     0.20
## 3169                   Take-Two Interactive     0.37     0.20     0.00
## 3170                             Activision     0.31     0.24     0.00
## 3171                                 Capcom     0.31     0.17     0.07
## 3172                             Activision     0.53     0.02     0.00
## 3173            Sony Computer Entertainment     0.35     0.24     0.00
## 3174            Sony Computer Entertainment     0.20     0.33     0.01
## 3175            Sony Computer Entertainment     0.08     0.12     0.00
## 3176                              LucasArts     0.55     0.03     0.00
## 3177             Disney Interactive Studios     0.48     0.10     0.00
## 3178                            Square Enix     0.00     0.00     0.63
## 3179                              MTV Games     0.53     0.06     0.00
## 3180                        Electronic Arts     0.23     0.33     0.00
## 3181                             Activision     0.41     0.19     0.00
## 3182                        Electronic Arts     0.56     0.02     0.01
## 3183                        Electronic Arts     0.35     0.24     0.00
## 3184                        Electronic Arts     0.20     0.40     0.00
## 3185                     Namco Bandai Games     0.00     0.00     0.63
## 3186                        Electronic Arts     0.37     0.20     0.00
## 3187                                Ubisoft     0.15     0.44     0.00
## 3188                                 Capcom     0.00     0.00     0.63
## 3189                        Electronic Arts     0.53     0.02     0.00
## 3190                                Ubisoft     0.45     0.17     0.00
## 3191                             Activision     0.49     0.13     0.00
## 3192           Konami Digital Entertainment     0.32     0.05     0.25
## 3193                                   Sega     0.46     0.09     0.00
## 3194            Sony Computer Entertainment     0.23     0.09     0.27
## 3195                     Namco Bandai Games     0.00     0.00     0.63
## 3196                                    THQ     0.22     0.34     0.00
## 3197                             Activision     0.25     0.27     0.00
## 3198                             Activision     0.46     0.11     0.00
## 3199                        Electronic Arts     0.40     0.23     0.00
## 3200            Sony Computer Entertainment     0.12     0.09     0.38
## 3201                                Ubisoft     0.35     0.17     0.00
## 3202                        Universal Gamex     0.58     0.04     0.00
## 3203                                   Sega     0.07     0.42     0.00
## 3204                             Tecmo Koei     0.22     0.20     0.16
## 3205                        Electronic Arts     0.31     0.24     0.00
## 3206                             Activision     0.38     0.20     0.00
## 3207                                 Square     0.00     0.00     0.59
## 3208                                   Sega     0.38     0.19     0.00
## 3209                                 Capcom     0.11     0.03     0.15
## 3210                             Ghostlight     0.18     0.06     0.34
## 3211                          Vivendi Games     0.25     0.24     0.00
## 3212                        Electronic Arts     0.35     0.24     0.00
## 3213                        Electronic Arts     0.17     0.39     0.00
## 3214                             Activision     0.35     0.24     0.00
## 3215                        Electronic Arts     0.36     0.16     0.00
## 3216                     Namco Bandai Games     0.48     0.13     0.00
## 3217                             Activision     0.34     0.23     0.00
## 3218                             Activision     0.58     0.00     0.00
## 3219                             Activision     0.30     0.22     0.01
## 3220                                  Atari     0.43     0.14     0.00
## 3221                   Take-Two Interactive     0.36     0.21     0.00
## 3222                             Tecmo Koei     0.30     0.00     0.32
## 3223                                   Sega     0.00     0.00     0.62
## 3224           Konami Digital Entertainment     0.38     0.22     0.00
## 3225                             Activision     0.40     0.20     0.00
## 3226                  Acclaim Entertainment     0.35     0.24     0.00
## 3227                                Ubisoft     0.16     0.13     0.29
## 3228            Sony Computer Entertainment     0.35     0.24     0.00
## 3229                                Ubisoft     0.58     0.00     0.00
## 3230                        Electronic Arts     0.48     0.13     0.00
## 3231 Warner Bros. Interactive Entertainment     0.31     0.23     0.03
## 3232                                  Atari     0.58     0.03     0.00
## 3233                        Electronic Arts     0.47     0.13     0.00
## 3234                                  Atari     0.16     0.34     0.01
## 3235                                    THQ     0.30     0.24     0.00
## 3236                                Ubisoft     0.33     0.20     0.00
## 3237             Disney Interactive Studios     0.29     0.27     0.00
## 3238                               Nintendo     0.19     0.26     0.11
## 3239             Disney Interactive Studios     0.41     0.16     0.00
## 3240             Disney Interactive Studios     0.27     0.25     0.00
## 3241                                 Capcom     0.38     0.10     0.12
## 3242                        Electronic Arts     0.37     0.22     0.00
## 3243                        Electronic Arts     0.40     0.20     0.00
## 3244                             Activision     0.28     0.24     0.00
## 3245                      Eidos Interactive     0.34     0.23     0.00
## 3246                                Play It     0.30     0.24     0.00
## 3247                     Wizard Video Games     0.58     0.03     0.00
## 3248                                Ubisoft     0.35     0.20     0.01
## 3249                    ASCII Entertainment     0.21     0.14     0.23
## 3250                      Eidos Interactive     0.30     0.24     0.00
## 3251                   Take-Two Interactive     0.28     0.29     0.00
## 3252             Disney Interactive Studios     0.35     0.21     0.00
## 3253                               Nintendo     0.00     0.00     0.62
## 3254                     Namco Bandai Games     0.48     0.12     0.00
## 3255                                   Sega     0.00     0.00     0.62
## 3256                             SquareSoft     0.00     0.00     0.62
## 3257                                Ubisoft     0.30     0.26     0.00
## 3258                         Ubisoft Annecy     0.00     0.04     0.57
## 3259                      Eidos Interactive     0.59     0.03     0.00
## 3260                             Activision     0.48     0.09     0.00
## 3261                     Namco Bandai Games     0.00     0.00     0.62
## 3262                            Square Enix     0.00     0.00     0.62
## 3263                  Acclaim Entertainment     0.59     0.02     0.00
## 3264                              Banpresto     0.00     0.00     0.58
## 3265                        Electronic Arts     0.40     0.16     0.00
## 3266                                Ubisoft     0.30     0.25     0.00
## 3267                                    THQ     0.29     0.26     0.00
## 3268            Sony Computer Entertainment     0.07     0.41     0.00
## 3269            Sony Computer Entertainment     0.00     0.57     0.04
## 3270                        Electronic Arts     0.20     0.34     0.00
## 3271                            Square Enix     0.17     0.18     0.20
## 3272                        Electronic Arts     0.15     0.36     0.01
## 3273                                 Capcom     0.30     0.03     0.25
## 3274                   Take-Two Interactive     0.56     0.00     0.00
## 3275                                    THQ     0.56     0.00     0.00
## 3276            Sony Computer Entertainment     0.00     0.04     0.00
## 3277                 Microsoft Game Studios     0.46     0.13     0.00
## 3278                             Tecmo Koei     0.02     0.02     0.57
## 3279                     Bethesda Softworks     0.22     0.27     0.01
## 3280                              505 Games     0.50     0.07     0.00
## 3281 Warner Bros. Interactive Entertainment     0.56     0.01     0.00
## 3282                                Ubisoft     0.37     0.19     0.00
## 3283                                    THQ     0.44     0.16     0.00
## 3284                               Nintendo     0.29     0.02     0.27
## 3285                        Electronic Arts     0.21     0.29     0.01
## 3286                               Nintendo     0.42     0.05     0.00
## 3287                         TDK Mediactive     0.30     0.23     0.00
## 3288                           Gotham Games     0.44     0.16     0.00
## 3289             Disney Interactive Studios     0.30     0.22     0.00
## 3290                               Nintendo     0.43     0.12     0.00
## 3291            Sony Computer Entertainment     0.18     0.27     0.00
## 3292                  Majesco Entertainment     0.44     0.16     0.00
## 3293                     Namco Bandai Games     0.30     0.23     0.00
## 3294                                    THQ     0.25     0.22     0.00
## 3295                                   Sega     0.21     0.21     0.11
## 3296                               Nintendo     0.00     0.00     0.61
## 3297     Sony Computer Entertainment Europe     0.14     0.34     0.00
## 3298                        Electronic Arts     0.34     0.23     0.00
## 3299                        Electronic Arts     0.37     0.21     0.00
## 3300                         GT Interactive     0.34     0.23     0.00
## 3301                             Activision     0.46     0.10     0.00
## 3302                   Take-Two Interactive     0.26     0.21     0.05
## 3303                     Bethesda Softworks     0.56     0.00     0.00
## 3304                            Deep Silver     0.22     0.22     0.08
## 3305           Konami Digital Entertainment     0.09     0.44     0.00
## 3306                                  Spike     0.56     0.00     0.00
## 3307                               Nintendo     0.27     0.10     0.22
## 3308                     Namco Bandai Games     0.27     0.18     0.09
## 3309                        Electronic Arts     0.44     0.16     0.00
## 3310                            Square Enix     0.35     0.21     0.00
## 3311                                Ubisoft     0.56     0.00     0.00
## 3312                        Electronic Arts     0.44     0.16     0.00
## 3313                      Eidos Interactive     0.34     0.23     0.00
## 3314                                  Atari     0.44     0.16     0.00
## 3315                        Electronic Arts     0.47     0.12     0.00
## 3316                             Activision     0.43     0.16     0.00
## 3317                        Electronic Arts     0.58     0.02     0.00
## 3318                               Nintendo     0.43     0.16     0.00
## 3319                        Electronic Arts     0.25     0.29     0.00
## 3320                                  Atari     0.50     0.02     0.00
## 3321                     Namco Bandai Games     0.47     0.08     0.01
## 3322                             Activision     0.57     0.00     0.00
## 3323                             Activision     0.43     0.16     0.00
## 3324                     Namco Bandai Games     0.21     0.23     0.08
## 3325                  Majesco Entertainment     0.43     0.16     0.00
## 3326                                    THQ     0.40     0.15     0.00
## 3327                                   Sega     0.50     0.02     0.00
## 3328                               Nintendo     0.40     0.10     0.09
## 3329                                   Sega     0.20     0.29     0.00
## 3330                      Eidos Interactive     0.30     0.23     0.00
## 3331                                   Sega     0.09     0.06     0.42
## 3332                        Electronic Arts     0.42     0.16     0.00
## 3333                                 Capcom     0.00     0.00     0.60
## 3334                            Deep Silver     0.26     0.19     0.07
## 3335                                Ubisoft     0.42     0.13     0.00
## 3336                 Microsoft Game Studios     0.30     0.23     0.02
## 3337                   Take-Two Interactive     0.50     0.02     0.00
## 3338                             Tecmo Koei     0.12     0.10     0.34
## 3339           Konami Digital Entertainment     0.21     0.14     0.21
## 3340             Disney Interactive Studios     0.33     0.22     0.00
## 3341            Sony Computer Entertainment     0.13     0.18     0.00
## 3342                                Ubisoft     0.30     0.24     0.00
## 3343                                Ubisoft     0.31     0.23     0.00
## 3344                                Ubisoft     0.29     0.23     0.00
## 3345                                    THQ     0.50     0.02     0.00
## 3346                                Compile     0.00     0.00     0.60
## 3347                          Vivendi Games     0.29     0.23     0.00
## 3348           Konami Digital Entertainment     0.09     0.26     0.23
## 3349                               Nintendo     0.37     0.08     0.14
## 3350                             Infogrames     0.29     0.23     0.00
## 3351             Disney Interactive Studios     0.32     0.23     0.00
## 3352                                   Sega     0.28     0.25     0.00
## 3353                                   Sega     0.26     0.28     0.00
## 3354                             Activision     0.51     0.04     0.00
## 3355                     Namco Bandai Games     0.00     0.00     0.56
## 3356           Konami Digital Entertainment     0.00     0.00     0.56
## 3357                      Rising Star Games     0.32     0.12     0.11
## 3358             Disney Interactive Studios     0.37     0.16     0.01
## 3359             Disney Interactive Studios     0.27     0.27     0.00
## 3360                        Electronic Arts     0.33     0.23     0.00
## 3361                        Electronic Arts     0.31     0.23     0.00
## 3362                                 Capcom     0.43     0.09     0.04
## 3363                               Nintendo     0.11     0.13     0.33
## 3364 Warner Bros. Interactive Entertainment     0.13     0.38     0.00
## 3365                             SquareSoft     0.00     0.00     0.60
## 3366                   Take-Two Interactive     0.17     0.34     0.00
## 3367                                Ubisoft     0.31     0.23     0.00
## 3368                               Nintendo     0.23     0.17     0.14
## 3369                             Activision     0.56     0.00     0.00
## 3370                                Ubisoft     0.22     0.24     0.00
## 3371                        Electronic Arts     0.31     0.19     0.00
## 3372                                   Sega     0.19     0.31     0.00
## 3373                                  Spike     0.29     0.23     0.00
## 3374                              Banpresto     0.00     0.00     0.60
## 3375                 Microsoft Game Studios     0.49     0.03     0.03
## 3376                        Electronic Arts     0.27     0.18     0.05
## 3377                        Electronic Arts     0.33     0.02     0.21
## 3378                   Take-Two Interactive     0.33     0.21     0.00
## 3379                                    THQ     0.29     0.23     0.00
## 3380                        Electronic Arts     0.34     0.20     0.00
## 3381                              Banpresto     0.00     0.00     0.59
## 3382                        Electronic Arts     0.08     0.35     0.05
## 3383           Konami Digital Entertainment     0.00     0.00     0.56
## 3384                        Electronic Arts     0.34     0.20     0.00
## 3385                             Activision     0.38     0.14     0.00
## 3386                        Electronic Arts     0.33     0.22     0.00
## 3387            Sony Computer Entertainment     0.33     0.22     0.00
## 3388                        Electronic Arts     0.46     0.12     0.00
## 3389                        Electronic Arts     0.00     0.53     0.00
## 3390                           Midway Games     0.33     0.22     0.00
## 3391           Konami Digital Entertainment     0.00     0.00     0.55
## 3392                              MTV Games     0.29     0.23     0.00
## 3393                        Electronic Arts     0.40     0.12     0.00
## 3394                                   Sega     0.00     0.00     0.59
## 3395                     Mattel Interactive     0.55     0.03     0.00
## 3396                        Electronic Arts     0.21     0.17     0.16
## 3397                        Electronic Arts     0.44     0.13     0.00
## 3398                  Universal Interactive     0.46     0.12     0.00
## 3399                                 Coleco     0.55     0.03     0.00
## 3400                                   Sega     0.15     0.38     0.00
## 3401                               Nintendo     0.25     0.00     0.31
## 3402                   Take-Two Interactive     0.32     0.22     0.00
## 3403                  Acclaim Entertainment     0.47     0.11     0.00
## 3404                           Midway Games     0.47     0.11     0.00
## 3405                                Ubisoft     0.15     0.34     0.00
## 3406                              505 Games     0.54     0.00     0.00
## 3407                 Microsoft Game Studios     0.36     0.08     0.14
## 3408                     Namco Bandai Games     0.00     0.00     0.59
## 3409           Konami Digital Entertainment     0.13     0.22     0.01
## 3410             Disney Interactive Studios     0.38     0.17     0.00
## 3411                             Activision     0.25     0.27     0.00
## 3412            Sony Computer Entertainment     0.33     0.22     0.00
## 3413                            Square Enix     0.17     0.27     0.05
## 3414                        Electronic Arts     0.54     0.00     0.01
## 3415                                Ubisoft     0.31     0.22     0.00
## 3416                                 Capcom     0.29     0.22     0.00
## 3417           Konami Digital Entertainment     0.14     0.12     0.27
## 3418                                Ubisoft     0.34     0.13     0.11
## 3419                                  Atari     0.29     0.22     0.00
## 3420                             Koch Media     0.35     0.13     0.00
## 3421                                Ubisoft     0.24     0.28     0.00
## 3422                               Nintendo     0.00     0.00     0.59
## 3423                               Nintendo     0.17     0.18     0.20
## 3424                                   Sega     0.30     0.22     0.00
## 3425            Sony Computer Entertainment     0.29     0.21     0.00
## 3426                                 Capcom     0.22     0.17     0.14
## 3427                            Square Enix     0.25     0.25     0.00
## 3428                                    THQ     0.29     0.22     0.00
## 3429                            Square Enix     0.39     0.02     0.13
## 3430                             Activision     0.21     0.23     0.00
## 3431                     Namco Bandai Games     0.39     0.13     0.02
## 3432           Konami Digital Entertainment     0.00     0.00     0.55
## 3433                        Electronic Arts     0.29     0.19     0.07
## 3434                           Parker Bros.     0.55     0.03     0.00
## 3435                            Square Enix     0.06     0.04     0.47
## 3436                                Ubisoft     0.18     0.34     0.00
## 3437                   Take-Two Interactive     0.15     0.37     0.00
## 3438 Warner Bros. Interactive Entertainment     0.36     0.17     0.00
## 3439                        Electronic Arts     0.49     0.02     0.00
## 3440                             Activision     0.50     0.04     0.00
## 3441             Disney Interactive Studios     0.31     0.23     0.00
## 3442                        Electronic Arts     0.54     0.00     0.00
## 3443                                   Sega     0.20     0.33     0.00
## 3444            Sony Computer Entertainment     0.54     0.00     0.00
## 3445                                    THQ     0.55     0.00     0.00
## 3446                             Activision     0.38     0.15     0.00
## 3447                 Microsoft Game Studios     0.38     0.15     0.00
## 3448                                    3DO     0.32     0.22     0.00
## 3449                             Activision     0.38     0.15     0.00
## 3450                                  Atari     0.28     0.22     0.00
## 3451                             Activision     0.31     0.21     0.00
## 3452                                Ubisoft     0.31     0.19     0.02
## 3453                        Electronic Arts     0.22     0.24     0.04
## 3454                                  Atlus     0.28     0.00     0.27
## 3455                   Take-Two Interactive     0.53     0.00     0.00
## 3456           Konami Digital Entertainment     0.06     0.30     0.19
## 3457                        Electronic Arts     0.15     0.39     0.00
## 3458                        Electronic Arts     0.14     0.40     0.00
## 3459                        Electronic Arts     0.36     0.15     0.00
## 3460                                Unknown     0.28     0.22     0.00
## 3461                             Infogrames     0.28     0.22     0.00
## 3462                     Namco Bandai Games     0.23     0.16     0.16
## 3463                     Namco Bandai Games     0.00     0.00     0.54
## 3464                                Ubisoft     0.33     0.22     0.00
## 3465            Sony Computer Entertainment     0.28     0.22     0.00
## 3466          BMG Interactive Entertainment     0.32     0.22     0.00
## 3467                             Activision     0.42     0.15     0.00
## 3468                        Electronic Arts     0.14     0.37     0.00
## 3469                     Namco Bandai Games     0.05     0.02     0.50
## 3470           Konami Digital Entertainment     0.28     0.22     0.00
## 3471                                    THQ     0.32     0.22     0.00
## 3472                     Namco Bandai Games     0.00     0.00     0.58
## 3473                            Square Enix     0.22     0.10     0.23
## 3474                                Ubisoft     0.14     0.34     0.00
## 3475                               Nintendo     0.00     0.00     0.58
## 3476                        Electronic Arts     0.16     0.32     0.02
## 3477                             Activision     0.32     0.22     0.00
## 3478                             Activision     0.45     0.12     0.00
## 3479                   Take-Two Interactive     0.52     0.02     0.00
## 3480                     Namco Bandai Games     0.28     0.22     0.00
## 3481                        Electronic Arts     0.48     0.02     0.00
## 3482                             SquareSoft     0.32     0.22     0.00
## 3483                           Midway Games     0.55     0.02     0.00
## 3484                        Electronic Arts     0.50     0.03     0.00
## 3485           Konami Digital Entertainment     0.10     0.20     0.22
## 3486                                   Sega     0.07     0.44     0.00
## 3487                                Unknown     0.53     0.02     0.00
## 3488                        Electronic Arts     0.28     0.22     0.00
## 3489             Disney Interactive Studios     0.35     0.18     0.00
## 3490                        Electronic Arts     0.24     0.16     0.13
## 3491                                Ubisoft     0.32     0.24     0.00
## 3492                        Electronic Arts     0.28     0.22     0.00
## 3493                             Activision     0.41     0.15     0.00
## 3494                        SouthPeak Games     0.53     0.00     0.00
## 3495                     Namco Bandai Games     0.00     0.00     0.57
## 3496                              505 Games     0.33     0.19     0.00
## 3497                     Namco Bandai Games     0.00     0.00     0.54
## 3498                           Midway Games     0.29     0.22     0.00
## 3499                          Vivendi Games     0.41     0.15     0.00
## 3500                   Take-Two Interactive     0.24     0.23     0.00
## 3501                                Ubisoft     0.52     0.01     0.00
## 3502            Sony Computer Entertainment     0.11     0.08     0.35
## 3503                             Koch Media     0.22     0.02     0.00
## 3504                             Activision     0.32     0.20     0.00
## 3505                             Activision     0.52     0.02     0.00
## 3506                        Electronic Arts     0.02     0.18     0.00
## 3507                        Electronic Arts     0.44     0.11     0.00
## 3508                                 Capcom     0.24     0.00     0.31
## 3509                        Electronic Arts     0.37     0.15     0.00
## 3510                                  PQube     0.36     0.10     0.06
## 3511                             Activision     0.50     0.03     0.00
## 3512                                   Sega     0.27     0.24     0.00
## 3513                     Namco Bandai Games     0.47     0.02     0.00
## 3514                               Nintendo     0.00     0.00     0.57
## 3515                         GT Interactive     0.48     0.08     0.00
## 3516                        Electronic Arts     0.38     0.12     0.00
## 3517                              505 Games     0.28     0.21     0.00
## 3518                              MTV Games     0.43     0.08     0.00
## 3519                 Microsoft Game Studios     0.43     0.12     0.00
## 3520                             Tecmo Koei     0.11     0.08     0.35
## 3521                             Activision     0.52     0.01     0.00
## 3522                      Rising Star Games     0.35     0.03     0.17
## 3523                   Take-Two Interactive     0.29     0.23     0.00
## 3524            Sony Computer Entertainment     0.28     0.22     0.00
## 3525                        Electronic Arts     0.47     0.02     0.00
## 3526                             Activision     0.42     0.11     0.02
## 3527                            Hudson Soft     0.00     0.00     0.57
## 3528                           Trion Worlds     0.38     0.14     0.00
## 3529                   Nippon Ichi Software     0.27     0.11     0.14
## 3530                                    THQ     0.52     0.00     0.00
## 3531                                    THQ     0.45     0.10     0.00
## 3532                     Bethesda Softworks     0.26     0.21     0.00
## 3533                     Namco Bandai Games     0.00     0.00     0.57
## 3534                             Activision     0.49     0.04     0.00
## 3535           Konami Digital Entertainment     0.10     0.11     0.29
## 3536                                   Sega     0.28     0.23     0.00
## 3537                        Electronic Arts     0.20     0.30     0.00
## 3538                                Ubisoft     0.27     0.25     0.00
## 3539             Disney Interactive Studios     0.37     0.14     0.00
## 3540                 Microsoft Game Studios     0.39     0.16     0.00
## 3541                                 Capcom     0.19     0.15     0.17
## 3542                   Take-Two Interactive     0.08     0.36     0.00
## 3543                                    THQ     0.31     0.21     0.00
## 3544                                Ubisoft     0.28     0.22     0.00
## 3545                      Eidos Interactive     0.21     0.22     0.00
## 3546                                    THQ     0.29     0.22     0.00
## 3547                            Xseed Games     0.32     0.00     0.21
## 3548                        SouthPeak Games     0.36     0.11     0.03
## 3549                                    THQ     0.22     0.28     0.00
## 3550                                 Capcom     0.11     0.08     0.34
## 3551                     Namco Bandai Games     0.05     0.07     0.42
## 3552                             Activision     0.44     0.11     0.00
## 3553                            Square Enix     0.23     0.18     0.09
## 3554                                Ubisoft     0.52     0.00     0.00
## 3555                  Universal Interactive     0.40     0.15     0.00
## 3556                 Zoo Digital Publishing     0.40     0.15     0.00
## 3557                               Nintendo     0.27     0.14     0.12
## 3558                        Electronic Arts     0.22     0.30     0.00
## 3559                        Electronic Arts     0.28     0.22     0.00
## 3560                        Electronic Arts     0.40     0.15     0.00
## 3561                           Midway Games     0.28     0.22     0.00
## 3562                          Vivendi Games     0.34     0.17     0.00
## 3563                               Nintendo     0.31     0.11     0.13
## 3564                        Electronic Arts     0.40     0.14     0.00
## 3565                        Electronic Arts     0.28     0.22     0.00
## 3566            Sony Computer Entertainment     0.31     0.21     0.00
## 3567                                    THQ     0.25     0.26     0.00
## 3568                        Electronic Arts     0.28     0.21     0.00
## 3569                   Take-Two Interactive     0.09     0.40     0.00
## 3570           Konami Digital Entertainment     0.40     0.15     0.00
## 3571                             Activision     0.28     0.21     0.00
## 3572 Warner Bros. Interactive Entertainment     0.40     0.11     0.00
## 3573                        Electronic Arts     0.28     0.21     0.00
## 3574                                    3DO     0.31     0.21     0.00
## 3575                                Ubisoft     0.28     0.21     0.00
## 3576                        Electronic Arts     0.39     0.15     0.00
## 3577                                Ubisoft     0.21     0.22     0.05
## 3578                  Acclaim Entertainment     0.27     0.21     0.00
## 3579                             Infogrames     0.40     0.15     0.00
## 3580                                 Mojang     0.30     0.21     0.00
## 3581                  Majesco Entertainment     0.51     0.01     0.00
## 3582                        Electronic Arts     0.43     0.11     0.00
## 3583                        Electronic Arts     0.31     0.21     0.00
## 3584             Disney Interactive Studios     0.19     0.31     0.00
## 3585                                    THQ     0.43     0.11     0.00
## 3586                     Virgin Interactive     0.39     0.09     0.07
## 3587                                 Laguna     0.09     0.02     0.45
## 3588                   Take-Two Interactive     0.27     0.21     0.00
## 3589                            Square Enix     0.15     0.12     0.26
## 3590                             Activision     0.41     0.07     0.00
## 3591                               Nintendo     0.00     0.00     0.56
## 3592                        Electronic Arts     0.27     0.21     0.00
## 3593                                Ubisoft     0.50     0.01     0.00
## 3594                                Level 5     0.00     0.00     0.56
## 3595                             Activision     0.49     0.02     0.00
## 3596                          Vivendi Games     0.27     0.21     0.00
## 3597                  Universal Interactive     0.40     0.15     0.00
## 3598                             Activision     0.28     0.22     0.00
## 3599           Konami Digital Entertainment     0.40     0.15     0.00
## 3600                 Microsoft Game Studios     0.39     0.15     0.00
## 3601                                   Sega     0.27     0.21     0.00
## 3602                                 Takara     0.00     0.00     0.56
## 3603                   Take-Two Interactive     0.52     0.02     0.00
## 3604                               Nintendo     0.33     0.16     0.02
## 3605                               Nintendo     0.00     0.00     0.56
## 3606            Sony Computer Entertainment     0.21     0.17     0.09
## 3607                 Microsoft Game Studios     0.30     0.20     0.01
## 3608                 Ignition Entertainment     0.17     0.24     0.00
## 3609                                Ubisoft     0.48     0.03     0.00
## 3610 Warner Bros. Interactive Entertainment     0.20     0.26     0.01
## 3611                            Codemasters     0.27     0.21     0.00
## 3612                        Electronic Arts     0.15     0.37     0.00
## 3613                            Square Enix     0.13     0.09     0.27
## 3614                                    THQ     0.34     0.15     0.01
## 3615                                    THQ     0.27     0.21     0.00
## 3616                        Electronic Arts     0.42     0.12     0.00
## 3617                        Kadokawa Shoten     0.27     0.18     0.06
## 3618                                Natsume     0.25     0.05     0.22
## 3619                      Rising Star Games     0.29     0.17     0.04
## 3620                           Midway Games     0.31     0.21     0.00
## 3621            Sony Computer Entertainment     0.39     0.08     0.02
## 3622                   Take-Two Interactive     0.49     0.02     0.00
## 3623                      Eidos Interactive     0.27     0.21     0.00
## 3624           Konami Digital Entertainment     0.34     0.01     0.15
## 3625                        Electronic Arts     0.42     0.11     0.00
## 3626                     Namco Bandai Games     0.24     0.22     0.01
## 3627                                   Sega     0.00     0.00     0.55
## 3628                                    THQ     0.40     0.13     0.00
## 3629                              Banpresto     0.00     0.00     0.52
## 3630                               Nintendo     0.00     0.00     0.55
## 3631                             Activision     0.30     0.20     0.00
## 3632                             Activision     0.52     0.03     0.00
## 3633                            D3Publisher     0.31     0.21     0.00
## 3634                      Eidos Interactive     0.31     0.21     0.00
## 3635                                   Sega     0.00     0.00     0.55
## 3636                                Ubisoft     0.49     0.02     0.00
## 3637            Sony Computer Entertainment     0.21     0.16     0.12
## 3638                                Ubisoft     0.27     0.21     0.00
## 3639            Sony Computer Entertainment     0.00     0.52     0.00
## 3640                             Enterbrain     0.00     0.00     0.55
## 3641                             Activision     0.51     0.00     0.00
## 3642            Sony Computer Entertainment     0.15     0.11     0.25
## 3643                             Activision     0.34     0.18     0.00
## 3644                                 Capcom     0.22     0.08     0.24
## 3645                                    3DO     0.31     0.21     0.00
## 3646                                 Capcom     0.13     0.24     0.10
## 3647                              LucasArts     0.31     0.21     0.00
## 3648 Warner Bros. Interactive Entertainment     0.17     0.30     0.00
## 3649                   Take-Two Interactive     0.50     0.01     0.00
## 3650                                Ubisoft     0.21     0.27     0.00
## 3651                             Activision     0.20     0.25     0.02
## 3652                     Namco Bandai Games     0.00     0.00     0.51
## 3653                                Ubisoft     0.18     0.33     0.00
## 3654                                    THQ     0.37     0.13     0.00
## 3655                              Banpresto     0.00     0.00     0.55
## 3656                             Activision     0.40     0.13     0.00
## 3657                                    THQ     0.18     0.35     0.00
## 3658                                Ubisoft     0.01     0.45     0.00
## 3659                                   Sega     0.00     0.00     0.55
## 3660            Sony Computer Entertainment     0.33     0.22     0.00
## 3661                                    THQ     0.39     0.15     0.00
## 3662                              Banpresto     0.00     0.00     0.55
## 3663                                    THQ     0.39     0.15     0.00
## 3664                             Activision     0.31     0.18     0.00
## 3665                 Microsoft Game Studios     0.15     0.34     0.00
## 3666            Sony Computer Entertainment     0.29     0.20     0.02
## 3667                        Electronic Arts     0.13     0.38     0.00
## 3668                  Acclaim Entertainment     0.39     0.14     0.00
## 3669                              505 Games     0.26     0.24     0.00
## 3670            Sony Computer Entertainment     0.45     0.02     0.00
## 3671                               Nintendo     0.25     0.03     0.24
## 3672                            Codemasters     0.27     0.21     0.00
## 3673                             Microprose     0.30     0.21     0.00
## 3674                             Activision     0.50     0.00     0.00
## 3675                   Take-Two Interactive     0.40     0.12     0.00
## 3676                            Deep Silver     0.50     0.00     0.00
## 3677                                    THQ     0.26     0.23     0.00
## 3678                                Ubisoft     0.47     0.03     0.00
## 3679                             Activision     0.40     0.10     0.00
## 3680     Sony Computer Entertainment Europe     0.35     0.12     0.00
## 3681                                   Sega     0.36     0.00     0.00
## 3682            Sony Computer Entertainment     0.00     0.06     0.00
## 3683                   Take-Two Interactive     0.19     0.23     0.04
## 3684                                    THQ     0.40     0.12     0.00
## 3685                        Electronic Arts     0.28     0.17     0.00
## 3686                            Codemasters     0.01     0.42     0.03
## 3687                        Electronic Arts     0.16     0.35     0.00
## 3688                             SquareSoft     0.00     0.00     0.54
## 3689                                    THQ     0.30     0.16     0.00
## 3690                                    THQ     0.50     0.00     0.00
## 3691                        Electronic Arts     0.49     0.02     0.00
## 3692                              Imagineer     0.00     0.00     0.54
## 3693           Konami Digital Entertainment     0.42     0.11     0.00
## 3694                          Vivendi Games     0.27     0.21     0.00
## 3695                            Square Enix     0.14     0.11     0.25
## 3696                                    THQ     0.39     0.14     0.00
## 3697                                Ubisoft     0.12     0.33     0.00
## 3698                                Level 5     0.00     0.00     0.54
## 3699                          Vivendi Games     0.18     0.26     0.00
## 3700                     Namco Bandai Games     0.30     0.19     0.00
## 3701                     Namco Bandai Games     0.26     0.21     0.00
## 3702                                  Atari     0.26     0.08     0.13
## 3703                        Electronic Arts     0.24     0.21     0.00
## 3704                             Tecmo Koei     0.11     0.04     0.36
## 3705                        Electronic Arts     0.43     0.10     0.00
## 3706                           CPG Products     0.50     0.03     0.00
## 3707                        Electronic Arts     0.11     0.39     0.00
## 3708                           Midway Games     0.43     0.10     0.00
## 3709                     Namco Bandai Games     0.00     0.00     0.54
## 3710               System 3 Arcade Software     0.07     0.40     0.00
## 3711                             Activision     0.39     0.11     0.00
## 3712                        Electronic Arts     0.23     0.25     0.00
## 3713                        Electronic Arts     0.46     0.02     0.01
## 3714                                    THQ     0.22     0.23     0.03
## 3715            Sony Computer Entertainment     0.09     0.06     0.35
## 3716                               Nintendo     0.29     0.08     0.16
## 3717                       Enix Corporation     0.00     0.00     0.54
## 3718                               Nintendo     0.26     0.04     0.22
## 3719                            Square Enix     0.16     0.07     0.28
## 3720                             Aruze Corp     0.00     0.00     0.50
## 3721                                    THQ     0.39     0.14     0.00
## 3722                        Electronic Arts     0.42     0.11     0.00
## 3723                             Activision     0.46     0.06     0.00
## 3724           Konami Digital Entertainment     0.00     0.00     0.54
## 3725                                   Sega     0.26     0.21     0.00
## 3726                     Namco Bandai Games     0.39     0.10     0.01
## 3727                            Deep Silver     0.29     0.16     0.04
## 3728                                Unknown     0.40     0.07     0.03
## 3729                             Activision     0.45     0.02     0.00
## 3730                             Activision     0.30     0.20     0.00
## 3731             Disney Interactive Studios     0.31     0.18     0.00
## 3732                              Destineer     0.50     0.00     0.00
## 3733                                Ubisoft     0.24     0.23     0.00
## 3734                        Electronic Arts     0.40     0.09     0.00
## 3735                           Parker Bros.     0.50     0.03     0.00
## 3736                                Ubisoft     0.50     0.00     0.00
## 3737                          Vivendi Games     0.26     0.20     0.00
## 3738            Sony Computer Entertainment     0.26     0.20     0.00
## 3739                        Electronic Arts     0.22     0.27     0.00
## 3740                        Electronic Arts     0.41     0.11     0.00
## 3741                          Vivendi Games     0.26     0.20     0.00
## 3742                     Namco Bandai Games     0.18     0.20     0.07
## 3743                                Ubisoft     0.48     0.01     0.00
## 3744                                   Sega     0.00     0.00     0.53
## 3745                     Namco Bandai Games     0.26     0.20     0.00
## 3746                               Nintendo     0.00     0.05     0.48
## 3747                    ASCII Entertainment     0.07     0.05     0.38
## 3748                        Electronic Arts     0.45     0.02     0.00
## 3749 Warner Bros. Interactive Entertainment     0.30     0.18     0.00
## 3750                                   Sega     0.12     0.15     0.18
## 3751            Sony Computer Entertainment     0.26     0.20     0.00
## 3752                                    THQ     0.42     0.07     0.00
## 3753                                 Capcom     0.30     0.15     0.03
## 3754                      Rising Star Games     0.35     0.01     0.14
## 3755                      Eidos Interactive     0.26     0.20     0.00
## 3756                                    N/A     0.38     0.14     0.00
## 3757                        Electronic Arts     0.44     0.02     0.00
## 3758                        Electronic Arts     0.30     0.20     0.00
## 3759                            Square Enix     0.15     0.07     0.27
## 3760                                    SCi     0.26     0.20     0.00
## 3761                   Nippon Ichi Software     0.25     0.07     0.17
## 3762                                   Sega     0.40     0.11     0.00
## 3763                           Midway Games     0.26     0.20     0.00
## 3764                      Eidos Interactive     0.30     0.20     0.00
## 3765                        Electronic Arts     0.26     0.20     0.00
## 3766                           Midway Games     0.40     0.11     0.00
## 3767                   Take-Two Interactive     0.25     0.23     0.00
## 3768                                Ubisoft     0.35     0.13     0.00
## 3769            Sony Computer Entertainment     0.30     0.20     0.00
## 3770 Warner Bros. Interactive Entertainment     0.35     0.13     0.00
## 3771                            Hudson Soft     0.00     0.00     0.53
## 3772                             Activision     0.25     0.24     0.00
## 3773                             Tecmo Koei     0.00     0.00     0.53
## 3774                             Activision     0.48     0.02     0.00
## 3775                             Tecmo Koei     0.00     0.00     0.53
## 3776                                Ubisoft     0.34     0.17     0.00
## 3777                        Electronic Arts     0.32     0.19     0.00
## 3778                        Electronic Arts     0.32     0.19     0.00
## 3779                        Electronic Arts     0.26     0.20     0.00
## 3780                  Universal Interactive     0.31     0.19     0.00
## 3781            Sony Computer Entertainment     0.26     0.20     0.00
## 3782                               Nintendo     0.00     0.13     0.38
## 3783                               Nintendo     0.39     0.03     0.08
## 3784                                 Capcom     0.21     0.04     0.26
## 3785                             Activision     0.43     0.09     0.00
## 3786           Konami Digital Entertainment     0.04     0.01     0.48
## 3787                     Empire Interactive     0.42     0.07     0.00
## 3788                             Activision     0.41     0.11     0.00
## 3789                               Nintendo     0.05     0.21     0.25
## 3790             Disney Interactive Studios     0.26     0.21     0.00
## 3791                             SquareSoft     0.00     0.00     0.49
## 3792                             Activision     0.19     0.29     0.00
## 3793                             Rondomedia     0.21     0.27     0.00
## 3794            Sony Computer Entertainment     0.11     0.26     0.02
## 3795 Warner Bros. Interactive Entertainment     0.26     0.23     0.00
## 3796                                    THQ     0.35     0.13     0.00
## 3797                              Mindscape     0.48     0.00     0.00
## 3798                   Take-Two Interactive     0.26     0.20     0.00
## 3799                                Ubisoft     0.35     0.09     0.00
## 3800                                    THQ     0.49     0.00     0.00
## 3801 Warner Bros. Interactive Entertainment     0.13     0.28     0.01
## 3802                             Activision     0.31     0.17     0.00
## 3803                        Electronic Arts     0.41     0.11     0.00
## 3804 Warner Bros. Interactive Entertainment     0.16     0.28     0.00
## 3805                                    THQ     0.26     0.20     0.00
## 3806                   Take-Two Interactive     0.44     0.02     0.00
## 3807                     Namco Bandai Games     0.00     0.00     0.53
## 3808                               Nintendo     0.38     0.01     0.10
## 3809                        Electronic Arts     0.36     0.12     0.00
## 3810                               Nintendo     0.49     0.03     0.00
## 3811                        Electronic Arts     0.49     0.03     0.00
## 3812                             Aruze Corp     0.00     0.00     0.49
## 3813                        Electronic Arts     0.23     0.20     0.01
## 3814                             Activision     0.26     0.20     0.00
## 3815                               Nintendo     0.24     0.09     0.19
## 3816                                   Sega     0.00     0.00     0.52
## 3817           Konami Digital Entertainment     0.29     0.20     0.00
## 3818                     Namco Bandai Games     0.21     0.12     0.13
## 3819                                Ubisoft     0.25     0.19     0.00
## 3820                     Namco Bandai Games     0.00     0.00     0.52
## 3821                                    THQ     0.17     0.26     0.00
## 3822                        Electronic Arts     0.49     0.00     0.00
## 3823 Warner Bros. Interactive Entertainment     0.32     0.15     0.00
## 3824                                   Sega     0.17     0.00     0.33
## 3825                                Ubisoft     0.46     0.01     0.02
## 3826                        Electronic Arts     0.28     0.19     0.00
## 3827                                   Sega     0.13     0.00     0.00
## 3828                                 Square     0.29     0.20     0.00
## 3829                            Codemasters     0.08     0.29     0.00
## 3830            Sony Computer Entertainment     0.29     0.20     0.00
## 3831           Konami Digital Entertainment     0.18     0.14     0.16
## 3832                     Namco Bandai Games     0.21     0.04     0.24
## 3833                        Electronic Arts     0.47     0.00     0.00
## 3834 Warner Bros. Interactive Entertainment     0.47     0.01     0.00
## 3835                        Electronic Arts     0.26     0.20     0.00
## 3836 Warner Bros. Interactive Entertainment     0.39     0.09     0.00
## 3837                        Electronic Arts     0.39     0.11     0.00
## 3838                              505 Games     0.47     0.00     0.00
## 3839                        Electronic Arts     0.47     0.00     0.01
## 3840                           Midway Games     0.29     0.20     0.00
## 3841 Warner Bros. Interactive Entertainment     0.27     0.19     0.02
## 3842                                 Capcom     0.28     0.07     0.16
## 3843                        Electronic Arts     0.46     0.00     0.02
## 3844                        Electronic Arts     0.12     0.25     0.02
## 3845                             Infogrames     0.29     0.20     0.00
## 3846                        Electronic Arts     0.18     0.25     0.00
## 3847            Sony Computer Entertainment     0.09     0.31     0.00
## 3848                                 Capcom     0.12     0.08     0.28
## 3849                            Square Enix     0.18     0.24     0.02
## 3850                        Electronic Arts     0.17     0.13     0.18
## 3851                                   Sega     0.00     0.00     0.52
## 3852                      Eidos Interactive     0.25     0.19     0.02
## 3853                        Electronic Arts     0.25     0.20     0.00
## 3854           Konami Digital Entertainment     0.22     0.15     0.04
## 3855                             Activision     0.38     0.12     0.00
## 3856             Disney Interactive Studios     0.37     0.14     0.00
## 3857                        Electronic Arts     0.46     0.01     0.00
## 3858                                    THQ     0.25     0.20     0.00
## 3859                               Nintendo     0.22     0.13     0.12
## 3860                             SquareSoft     0.10     0.07     0.31
## 3861                               Nintendo     0.00     0.00     0.52
## 3862                        Electronic Arts     0.25     0.20     0.00
## 3863             Disney Interactive Studios     0.21     0.26     0.00
## 3864                            Square Enix     0.33     0.03     0.11
## 3865                             Activision     0.37     0.14     0.00
## 3866                             Gamebridge     0.18     0.08     0.22
## 3867                        Electronic Arts     0.46     0.05     0.00
## 3868                      Rising Star Games     0.32     0.03     0.15
## 3869                        Electronic Arts     0.37     0.14     0.00
## 3870            Sony Computer Entertainment     0.17     0.11     0.20
## 3871                                   Sega     0.38     0.11     0.00
## 3872             Disney Interactive Studios     0.22     0.21     0.00
## 3873                   Take-Two Interactive     0.47     0.00     0.00
## 3874                        Electronic Arts     0.26     0.20     0.00
## 3875                        Electronic Arts     0.29     0.19     0.00
## 3876            Sony Computer Entertainment     0.25     0.20     0.00
## 3877 Warner Bros. Interactive Entertainment     0.11     0.29     0.00
## 3878                      Eidos Interactive     0.13     0.10     0.25
## 3879                            Square Enix     0.13     0.07     0.27
## 3880                                   Sega     0.19     0.26     0.02
## 3881                             Activision     0.21     0.21     0.00
## 3882                                Ubisoft     0.09     0.36     0.00
## 3883             Disney Interactive Studios     0.32     0.15     0.00
## 3884                             Activision     0.48     0.03     0.00
## 3885            Sony Computer Entertainment     0.25     0.20     0.00
## 3886             Disney Interactive Studios     0.36     0.11     0.00
## 3887           Konami Digital Entertainment     0.08     0.05     0.35
## 3888        Midas Interactive Entertainment     0.25     0.20     0.00
## 3889            Sony Computer Entertainment     0.36     0.03     0.08
## 3890                        Electronic Arts     0.40     0.10     0.00
## 3891           Konami Digital Entertainment     0.00     0.00     0.51
## 3892                                    THQ     0.25     0.20     0.00
## 3893            Sony Computer Entertainment     0.15     0.08     0.22
## 3894                              Interplay     0.28     0.19     0.00
## 3895              Sony Online Entertainment     0.35     0.11     0.00
## 3896                               Nintendo     0.00     0.00     0.51
## 3897                        Electronic Arts     0.47     0.00     0.00
## 3898                              505 Games     0.23     0.23     0.00
## 3899                                Ubisoft     0.35     0.12     0.00
## 3900                             Activision     0.28     0.15     0.00
## 3901                   Take-Two Interactive     0.47     0.00     0.00
## 3902             Disney Interactive Studios     0.25     0.21     0.00
## 3903                                    THQ     0.09     0.32     0.00
## 3904                                    THQ     0.37     0.14     0.00
## 3905                               Nintendo     0.00     0.00     0.51
## 3906                                    THQ     0.41     0.09     0.00
## 3907           Konami Digital Entertainment     0.01     0.26     0.22
## 3908                        Electronic Arts     0.44     0.04     0.00
## 3909                                   Sega     0.35     0.12     0.00
## 3910                                   Sega     0.22     0.24     0.00
## 3911                              Banpresto     0.00     0.00     0.48
## 3912           Konami Digital Entertainment     0.12     0.27     0.06
## 3913                                    THQ     0.37     0.14     0.00
## 3914                               Nintendo     0.44     0.03     0.00
## 3915                     Namco Bandai Games     0.15     0.12     0.20
## 3916                        Electronic Arts     0.00     0.46     0.00
## 3917                             Tecmo Koei     0.18     0.00     0.30
## 3918                        Electronic Arts     0.42     0.02     0.00
## 3919                     Namco Bandai Games     0.12     0.20     0.07
## 3920                     Bethesda Softworks     0.26     0.19     0.00
## 3921                     Namco Bandai Games     0.36     0.08     0.02
## 3922                     Namco Bandai Games     0.29     0.16     0.01
## 3923                                Ubisoft     0.47     0.00     0.00
## 3924                    Crave Entertainment     0.37     0.11     0.00
## 3925                   Take-Two Interactive     0.25     0.19     0.00
## 3926                   Take-Two Interactive     0.22     0.21     0.00
## 3927                             SquareSoft     0.00     0.00     0.51
## 3928                                  Atari     0.36     0.13     0.00
## 3929                           Midway Games     0.37     0.11     0.00
## 3930           Konami Digital Entertainment     0.25     0.19     0.00
## 3931                             Activision     0.47     0.03     0.00
## 3932                                 Capcom     0.22     0.17     0.05
## 3933                                Ubisoft     0.46     0.01     0.00
## 3934                             Infogrames     0.25     0.19     0.00
## 3935                        Electronic Arts     0.29     0.18     0.00
## 3936            Sony Computer Entertainment     0.28     0.19     0.00
## 3937                        Electronic Arts     0.26     0.20     0.00
## 3938                                    THQ     0.36     0.13     0.00
## 3939                                   Sega     0.42     0.02     0.00
## 3940 Warner Bros. Interactive Entertainment     0.25     0.19     0.00
## 3941                             Activision     0.33     0.13     0.00
## 3942                                  Atari     0.47     0.03     0.00
## 3943                        Electronic Arts     0.45     0.01     0.00
## 3944                   Take-Two Interactive     0.17     0.28     0.00
## 3945                                    THQ     0.44     0.03     0.00
## 3946                   Take-Two Interactive     0.42     0.06     0.00
## 3947                                 Capcom     0.00     0.00     0.50
## 3948                        Electronic Arts     0.31     0.12     0.00
## 3949                                    THQ     0.43     0.03     0.00
## 3950                                    THQ     0.39     0.10     0.00
## 3951                                    THQ     0.28     0.19     0.00
## 3952                  Universal Interactive     0.25     0.19     0.00
## 3953             Disney Interactive Studios     0.45     0.02     0.00
## 3954                                    THQ     0.46     0.01     0.00
## 3955                      Eidos Interactive     0.25     0.19     0.00
## 3956             Disney Interactive Studios     0.25     0.19     0.00
## 3957                             Activision     0.47     0.03     0.00
## 3958                                Ubisoft     0.19     0.22     0.00
## 3959                          Vivendi Games     0.25     0.19     0.00
## 3960                             Activision     0.25     0.19     0.00
## 3961                               Nintendo     0.17     0.02     0.30
## 3962           Konami Digital Entertainment     0.10     0.34     0.00
## 3963                            Square Enix     0.36     0.02     0.07
## 3964                                  Atari     0.08     0.27     0.00
## 3965                        Electronic Arts     0.18     0.20     0.00
## 3966            Sony Computer Entertainment     0.25     0.13     0.04
## 3967                                Ubisoft     0.18     0.22     0.02
## 3968                            Square Enix     0.22     0.07     0.18
## 3969                                Ubisoft     0.17     0.24     0.00
## 3970                             Activision     0.25     0.20     0.00
## 3971                                    THQ     0.40     0.09     0.00
## 3972                                    GSP     0.12     0.32     0.00
## 3973                             Activision     0.24     0.19     0.00
## 3974                               Nintendo     0.13     0.05     0.31
## 3975                             Activision     0.24     0.18     0.00
## 3976                              Banpresto     0.00     0.00     0.50
## 3977                                   Sega     0.45     0.01     0.00
## 3978                                 Jaleco     0.28     0.19     0.00
## 3979                             Tecmo Koei     0.30     0.10     0.08
## 3980                    ASCII Entertainment     0.11     0.07     0.29
## 3981                   Take-Two Interactive     0.47     0.00     0.00
## 3982                               Nintendo     0.10     0.34     0.01
## 3983           Konami Digital Entertainment     0.46     0.00     0.00
## 3984                        Electronic Arts     0.42     0.04     0.00
## 3985                              LucasArts     0.24     0.19     0.00
## 3986                                    THQ     0.24     0.19     0.00
## 3987                        Electronic Arts     0.47     0.00     0.00
## 3988                        Electronic Arts     0.41     0.02     0.00
## 3989                                 Capcom     0.11     0.08     0.28
## 3990                        Electronic Arts     0.45     0.01     0.00
## 3991                             Activision     0.38     0.10     0.00
## 3992                                    THQ     0.24     0.19     0.00
## 3993                     Namco Bandai Games     0.00     0.00     0.50
## 3994                             Activision     0.24     0.19     0.00
## 3995                                Ubisoft     0.36     0.13     0.00
## 3996                     Namco Bandai Games     0.00     0.00     0.50
## 3997            Sony Computer Entertainment     0.00     0.00     0.46
## 3998                     Bethesda Softworks     0.23     0.21     0.01
## 3999                      Eidos Interactive     0.41     0.02     0.00
## 4000                             Activision     0.41     0.01     0.00
## 4001                             Infogrames     0.24     0.19     0.00
## 4002                                  Atari     0.46     0.03     0.00
## 4003                                    THQ     0.24     0.19     0.00
## 4004                                  Atari     0.46     0.03     0.00
## 4005                        Answer Software     0.46     0.03     0.00
## 4006                        Electronic Arts     0.27     0.14     0.04
## 4007                        Electronic Arts     0.46     0.00     0.00
## 4008                             Activision     0.41     0.02     0.03
## 4009                     Namco Bandai Games     0.19     0.15     0.12
## 4010                               Nintendo     0.28     0.03     0.16
## 4011                     Namco Bandai Games     0.09     0.06     0.32
## 4012                                    THQ     0.46     0.00     0.00
## 4013                             Activision     0.35     0.13     0.00
## 4014                                   Sega     0.26     0.15     0.05
## 4015                             Rondomedia     0.00     0.42     0.00
## 4016                                    THQ     0.44     0.02     0.00
## 4017                            Square Enix     0.00     0.00     0.49
## 4018                            Codemasters     0.10     0.34     0.00
## 4019                   Take-Two Interactive     0.46     0.01     0.00
## 4020                             Activision     0.46     0.03     0.00
## 4021                             Activision     0.44     0.02     0.00
## 4022                              505 Games     0.33     0.12     0.00
## 4023                   Nippon Ichi Software     0.27     0.10     0.07
## 4024                                  Atari     0.41     0.01     0.00
## 4025                                  Atari     0.13     0.02     0.32
## 4026                                   Sega     0.24     0.14     0.07
## 4027                                    THQ     0.38     0.10     0.00
## 4028                        Electronic Arts     0.43     0.03     0.00
## 4029                                Ubisoft     0.46     0.00     0.00
## 4030                                    THQ     0.35     0.13     0.00
## 4031                        Electronic Arts     0.34     0.13     0.00
## 4032                               Nintendo     0.27     0.03     0.17
## 4033                        Electronic Arts     0.35     0.13     0.00
## 4034                        Electronic Arts     0.20     0.21     0.00
## 4035                            Square Enix     0.12     0.10     0.24
## 4036                     Namco Bandai Games     0.30     0.12     0.03
## 4037                     Namco Bandai Games     0.00     0.00     0.49
## 4038                               Nintendo     0.00     0.00     0.49
## 4039                          Vivendi Games     0.37     0.11     0.00
## 4040                                 Capcom     0.16     0.16     0.13
## 4041                        Electronic Arts     0.16     0.30     0.00
## 4042                             Activision     0.29     0.15     0.00
## 4043                              LucasArts     0.42     0.03     0.00
## 4044             Disney Interactive Studios     0.36     0.04     0.04
## 4045                            Square Enix     0.20     0.22     0.01
## 4046                                   Sega     0.00     0.00     0.49
## 4047                                    THQ     0.45     0.00     0.00
## 4048                                  Atari     0.24     0.19     0.00
## 4049            Sony Computer Entertainment     0.00     0.15     0.00
## 4050 Warner Bros. Interactive Entertainment     0.28     0.16     0.00
## 4051                  Universal Interactive     0.24     0.19     0.00
## 4052                               Nintendo     0.18     0.12     0.16
## 4053                     Namco Bandai Games     0.00     0.00     0.49
## 4054                                  Atari     0.00     0.00     0.46
## 4055                                   Sega     0.08     0.30     0.01
## 4056                        Electronic Arts     0.20     0.23     0.00
## 4057                                Ubisoft     0.27     0.16     0.02
## 4058                             Activision     0.25     0.01     0.00
## 4059                  Acclaim Entertainment     0.36     0.09     0.02
## 4060                                  Atari     0.24     0.18     0.03
## 4061                           Midway Games     0.24     0.19     0.00
## 4062                     Namco Bandai Games     0.36     0.11     0.00
## 4063                        Fox Interactive     0.27     0.18     0.00
## 4064                            Hudson Soft     0.00     0.00     0.49
## 4065                       City Interactive     0.00     0.45     0.00
## 4066                     Namco Bandai Games     0.07     0.05     0.35
## 4067                                    THQ     0.00     0.00     0.49
## 4068                        Electronic Arts     0.12     0.31     0.00
## 4069                               Nintendo     0.31     0.09     0.05
## 4070                               Nintendo     0.17     0.10     0.18
## 4071                                  Atari     0.14     0.30     0.00
## 4072                                   Sega     0.00     0.47     0.00
## 4073                               Nintendo     0.06     0.07     0.34
## 4074                             Activision     0.40     0.02     0.00
## 4075                             Activision     0.35     0.13     0.00
## 4076                 Zoo Digital Publishing     0.35     0.13     0.00
## 4077           Konami Digital Entertainment     0.00     0.00     0.45
## 4078                                Ubisoft     0.01     0.45     0.00
## 4079                        Electronic Arts     0.36     0.11     0.00
## 4080                                  Atari     0.45     0.03     0.00
## 4081           Konami Digital Entertainment     0.00     0.00     0.48
## 4082 Warner Bros. Interactive Entertainment     0.28     0.16     0.00
## 4083                              MTV Games     0.24     0.14     0.00
## 4084                        Scholastic Inc.     0.45     0.00     0.00
## 4085                                  Atari     0.24     0.18     0.00
## 4086                                    THQ     0.40     0.02     0.00
## 4087                             Activision     0.25     0.19     0.00
## 4088                  Acclaim Entertainment     0.27     0.18     0.00
## 4089                 Microsoft Game Studios     0.27     0.17     0.00
## 4090             Disney Interactive Studios     0.28     0.15     0.00
## 4091                 Microsoft Game Studios     0.43     0.01     0.00
## 4092            Sony Computer Entertainment     0.21     0.19     0.00
## 4093                            D3Publisher     0.22     0.20     0.01
## 4094                             Activision     0.27     0.18     0.00
## 4095                        Electronic Arts     0.44     0.00     0.00
## 4096                        Electronic Arts     0.29     0.15     0.00
## 4097                               Nintendo     0.15     0.13     0.17
## 4098                              LucasArts     0.24     0.18     0.00
## 4099                           Pack In Soft     0.25     0.06     0.11
## 4100                  Acclaim Entertainment     0.44     0.04     0.00
## 4101                        Electronic Arts     0.40     0.02     0.00
## 4102                                    THQ     0.24     0.18     0.00
## 4103                          Vivendi Games     0.42     0.02     0.00
## 4104                     Namco Bandai Games     0.16     0.13     0.14
## 4105                                Ubisoft     0.44     0.01     0.00
## 4106 Warner Bros. Interactive Entertainment     0.31     0.12     0.02
## 4107                             Activision     0.24     0.19     0.00
## 4108                             Activision     0.27     0.18     0.00
## 4109                        Electronic Arts     0.20     0.21     0.00
## 4110           Konami Digital Entertainment     0.30     0.14     0.00
## 4111                   Nippon Ichi Software     0.22     0.10     0.11
## 4112                        Electronic Arts     0.23     0.18     0.00
## 4113                               XS Games     0.44     0.00     0.00
## 4114                             Activision     0.41     0.02     0.02
## 4115                            989 Studios     0.27     0.18     0.00
## 4116                   Take-Two Interactive     0.44     0.00     0.00
## 4117                                Ubisoft     0.00     0.47     0.00
## 4118                        Electronic Arts     0.38     0.05     0.00
## 4119                              Rebellion     0.34     0.13     0.00
## 4120                        Electronic Arts     0.35     0.11     0.00
## 4121                               Nintendo     0.25     0.03     0.17
## 4122                        Electronic Arts     0.19     0.27     0.01
## 4123                                    THQ     0.19     0.05     0.00
## 4124                             Activision     0.45     0.03     0.00
## 4125                                Ubisoft     0.08     0.35     0.00
## 4126                 Ignition Entertainment     0.23     0.18     0.00
## 4127                               Nintendo     0.16     0.01     0.29
## 4128                                    N/A     0.00     0.48     0.00
## 4129            Sony Computer Entertainment     0.14     0.11     0.19
## 4130                             Activision     0.45     0.02     0.00
## 4131                  Acclaim Entertainment     0.24     0.16     0.04
## 4132                        Electronic Arts     0.45     0.02     0.00
## 4133                            Ultravision     0.44     0.03     0.00
## 4134                             Activision     0.23     0.18     0.00
## 4135                   Take-Two Interactive     0.43     0.01     0.00
## 4136                        Electronic Arts     0.39     0.02     0.00
## 4137                             Tecmo Koei     0.14     0.01     0.31
## 4138                     Bethesda Softworks     0.28     0.15     0.00
## 4139             Disney Interactive Studios     0.25     0.17     0.00
## 4140                             Activision     0.42     0.02     0.00
## 4141                                Compile     0.00     0.00     0.47
## 4142                 Harmonix Music Systems     0.38     0.04     0.00
## 4143                           Midway Games     0.26     0.18     0.00
## 4144                             Activision     0.20     0.23     0.00
## 4145                              Psygnosis     0.26     0.18     0.00
## 4146                                 Capcom     0.31     0.10     0.03
## 4147                            D3Publisher     0.23     0.16     0.01
## 4148            Sony Computer Entertainment     0.23     0.18     0.00
## 4149                    Activision Blizzard     0.08     0.36     0.00
## 4150                                Xplosiv     0.06     0.39     0.00
## 4151                                    THQ     0.35     0.08     0.00
## 4152                            Square Enix     0.00     0.00     0.47
## 4153                           Midway Games     0.25     0.17     0.01
## 4154                        Electronic Arts     0.17     0.27     0.00
## 4155                     Empire Interactive     0.05     0.04     0.38
## 4156                               Nintendo     0.00     0.00     0.46
## 4157                            Square Enix     0.04     0.03     0.39
## 4158               System 3 Arcade Software     0.41     0.03     0.00
## 4159                                    THQ     0.23     0.18     0.00
## 4160                        Electronic Arts     0.19     0.23     0.00
## 4161                                Level 5     0.00     0.00     0.47
## 4162 Warner Bros. Interactive Entertainment     0.19     0.20     0.01
## 4163                        Electronic Arts     0.41     0.02     0.00
## 4164                           Midway Games     0.23     0.18     0.00
## 4165                   Hudson Entertainment     0.00     0.00     0.44
## 4166                           Midway Games     0.38     0.08     0.00
## 4167                               Nintendo     0.27     0.06     0.08
## 4168                                  Titus     0.28     0.17     0.00
## 4169           Konami Digital Entertainment     0.38     0.08     0.00
## 4170                          Vivendi Games     0.22     0.20     0.00
## 4171                 Microsoft Game Studios     0.16     0.25     0.01
## 4172             Disney Interactive Studios     0.21     0.18     0.00
## 4173                             Activision     0.44     0.02     0.00
## 4174                           Midway Games     0.23     0.18     0.00
## 4175                        Electronic Arts     0.33     0.10     0.00
## 4176                        Electronic Arts     0.35     0.10     0.00
## 4177                 Microsoft Game Studios     0.41     0.02     0.00
## 4178                                   Sega     0.10     0.22     0.02
## 4179                            Codemasters     0.26     0.18     0.00
## 4180                                    THQ     0.00     0.45     0.00
## 4181                                Ubisoft     0.43     0.01     0.00
## 4182                                Ubisoft     0.14     0.27     0.00
## 4183                            Hudson Soft     0.00     0.00     0.47
## 4184                               Nintendo     0.37     0.01     0.07
## 4185           Konami Digital Entertainment     0.00     0.00     0.47
## 4186                                    THQ     0.27     0.03     0.00
## 4187                            Codemasters     0.23     0.18     0.00
## 4188                        Electronic Arts     0.32     0.10     0.01
## 4189             Disney Interactive Studios     0.33     0.12     0.00
## 4190           Konami Digital Entertainment     0.22     0.19     0.01
## 4191                     Namco Bandai Games     0.14     0.27     0.00
## 4192                        Electronic Arts     0.04     0.33     0.00
## 4193                             Activision     0.43     0.00     0.00
## 4194                             Activision     0.39     0.01     0.00
## 4195                                Level 5     0.00     0.01     0.46
## 4196                        Electronic Arts     0.26     0.18     0.00
## 4197                            Square Enix     0.12     0.06     0.27
## 4198                                   Sega     0.28     0.13     0.01
## 4199                        Electronic Arts     0.30     0.12     0.00
## 4200                                Ubisoft     0.33     0.12     0.00
## 4201                             Activision     0.41     0.02     0.00
## 4202                             Tecmo Koei     0.30     0.03     0.10
## 4203                                  Atari     0.23     0.18     0.00
## 4204                               Nintendo     0.36     0.09     0.00
## 4205           Konami Digital Entertainment     0.30     0.08     0.07
## 4206                        Electronic Arts     0.43     0.00     0.00
## 4207                               Nintendo     0.20     0.04     0.21
## 4208                             Activision     0.23     0.18     0.00
## 4209           Konami Digital Entertainment     0.23     0.18     0.00
## 4210                     Namco Bandai Games     0.09     0.22     0.10
## 4211                                    THQ     0.33     0.12     0.00
## 4212                        Electronic Arts     0.09     0.22     0.03
## 4213                               Nintendo     0.25     0.09     0.12
## 4214                                Unknown     0.26     0.10     0.06
## 4215                                   Sega     0.00     0.44     0.00
## 4216                                    THQ     0.34     0.11     0.00
## 4217                                Ubisoft     0.42     0.01     0.00
## 4218                                Ubisoft     0.46     0.01     0.00
## 4219                        Electronic Arts     0.36     0.02     0.04
## 4220                             Infogrames     0.33     0.12     0.00
## 4221                                  Atari     0.43     0.03     0.00
## 4222                        Electronic Arts     0.38     0.05     0.00
## 4223                        Electronic Arts     0.00     0.29     0.00
## 4224                                Ubisoft     0.26     0.17     0.00
## 4225             Disney Interactive Studios     0.33     0.12     0.00
## 4226                                Wanadoo     0.20     0.15     0.06
## 4227            Sony Computer Entertainment     0.25     0.12     0.00
## 4228                     Namco Bandai Games     0.00     0.00     0.46
## 4229                                    THQ     0.13     0.10     0.20
## 4230                     Namco Bandai Games     0.00     0.00     0.46
## 4231                             Activision     0.33     0.12     0.00
## 4232                                    THQ     0.33     0.12     0.00
## 4233            Sony Computer Entertainment     0.23     0.18     0.00
## 4234                                Ubisoft     0.38     0.01     0.00
## 4235                     Bethesda Softworks     0.25     0.16     0.01
## 4236                                  Atari     0.38     0.01     0.00
## 4237                                    THQ     0.33     0.12     0.00
## 4238                                    THQ     0.24     0.15     0.00
## 4239                           Midway Games     0.26     0.17     0.00
## 4240            Sony Computer Entertainment     0.26     0.17     0.00
## 4241                            Square Enix     0.26     0.15     0.00
## 4242                         Telltale Games     0.12     0.25     0.02
## 4243                        Electronic Arts     0.42     0.00     0.00
## 4244                                Ubisoft     0.38     0.01     0.00
## 4245                          Vivendi Games     0.26     0.15     0.00
## 4246                                  Atari     0.43     0.03     0.00
## 4247            Sony Computer Entertainment     0.22     0.18     0.00
## 4248                        Electronic Arts     0.17     0.23     0.00
## 4249            Sony Computer Entertainment     0.22     0.18     0.00
## 4250                                    THQ     0.33     0.12     0.00
## 4251                          Vivendi Games     0.33     0.12     0.00
## 4252                 Ignition Entertainment     0.42     0.01     0.00
## 4253 Warner Bros. Interactive Entertainment     0.12     0.27     0.00
## 4254           Konami Digital Entertainment     0.21     0.15     0.04
## 4255                                 Capcom     0.22     0.00     0.22
## 4256                                    THQ     0.29     0.13     0.00
## 4257            Sony Computer Entertainment     0.22     0.17     0.00
## 4258                            Hudson Soft     0.00     0.00     0.46
## 4259             Disney Interactive Studios     0.21     0.21     0.00
## 4260                        Electronic Arts     0.00     0.38     0.00
## 4261                             Activision     0.25     0.17     0.00
## 4262                     Virgin Interactive     0.25     0.17     0.00
## 4263                              NovaLogic     0.22     0.17     0.00
## 4264             Disney Interactive Studios     0.29     0.13     0.00
## 4265                                  Taito     0.00     0.00     0.46
## 4266                                  Atari     0.14     0.11     0.17
## 4267                               Nintendo     0.00     0.00     0.45
## 4268                                    THQ     0.35     0.06     0.00
## 4269                        Electronic Arts     0.33     0.09     0.00
## 4270                 Microsoft Game Studios     0.36     0.08     0.00
## 4271                                Ubisoft     0.23     0.14     0.00
## 4272            Sony Computer Entertainment     0.25     0.17     0.00
## 4273                                   Sega     0.30     0.12     0.00
## 4274                      Eidos Interactive     0.09     0.24     0.00
## 4275                                Ubisoft     0.30     0.11     0.00
## 4276                     Namco Bandai Games     0.00     0.00     0.45
## 4277                                    THQ     0.33     0.12     0.00
## 4278                   Take-Two Interactive     0.26     0.15     0.00
## 4279                                  Atari     0.25     0.17     0.00
## 4280                        Electronic Arts     0.09     0.34     0.00
## 4281           Konami Digital Entertainment     0.00     0.00     0.45
## 4282           Konami Digital Entertainment     0.00     0.00     0.45
## 4283                                  Atari     0.34     0.09     0.02
## 4284 Warner Bros. Interactive Entertainment     0.20     0.21     0.00
## 4285                        Electronic Arts     0.34     0.10     0.00
## 4286                                  Epoch     0.00     0.00     0.45
## 4287                                Ubisoft     0.24     0.17     0.00
## 4288                        Electronic Arts     0.35     0.05     0.00
## 4289                             Infogrames     0.23     0.06     0.16
## 4290            Sony Computer Entertainment     0.21     0.14     0.01
## 4291                     BAM! Entertainment     0.22     0.17     0.00
## 4292                                   Sega     0.29     0.01     0.12
## 4293                                    THQ     0.42     0.00     0.00
## 4294                 GameMill Entertainment     0.43     0.00     0.00
## 4295                          Vivendi Games     0.32     0.11     0.00
## 4296                        Electronic Arts     0.38     0.01     0.00
## 4297                             Activision     0.42     0.03     0.00
## 4298                   Take-Two Interactive     0.42     0.00     0.00
## 4299                            989 Studios     0.25     0.17     0.00
## 4300                      Eidos Interactive     0.13     0.27     0.00
## 4301                           Midway Games     0.22     0.17     0.00
## 4302                     Namco Bandai Games     0.00     0.00     0.42
## 4303                        Electronic Arts     0.22     0.17     0.00
## 4304                  Majesco Entertainment     0.42     0.00     0.00
## 4305           Konami Digital Entertainment     0.42     0.00     0.00
## 4306                             Activision     0.42     0.00     0.00
## 4307 Warner Bros. Interactive Entertainment     0.21     0.20     0.00
## 4308                             Activision     0.42     0.00     0.00
## 4309                             Activision     0.34     0.10     0.00
## 4310                                  Atari     0.42     0.02     0.00
## 4311                         Ubisoft Annecy     0.03     0.02     0.38
## 4312                                Ubisoft     0.41     0.00     0.00
## 4313                        Electronic Arts     0.18     0.23     0.00
## 4314                             Activision     0.30     0.11     0.00
## 4315                   Take-Two Interactive     0.40     0.03     0.00
## 4316                      Rising Star Games     0.40     0.05     0.00
## 4317                             Activision     0.25     0.17     0.00
## 4318            Sony Computer Entertainment     0.37     0.03     0.00
## 4319                        Electronic Arts     0.02     0.38     0.01
## 4320           Konami Digital Entertainment     0.32     0.12     0.00
## 4321                     Namco Bandai Games     0.00     0.00     0.45
## 4322 Warner Bros. Interactive Entertainment     0.29     0.13     0.00
## 4323                          Vivendi Games     0.39     0.02     0.00
## 4324           Konami Digital Entertainment     0.00     0.00     0.45
## 4325                                    THQ     0.20     0.15     0.03
## 4326                                    THQ     0.22     0.17     0.00
## 4327                                 Takara     0.00     0.00     0.45
## 4328                         GT Interactive     0.36     0.08     0.00
## 4329                               Nintendo     0.36     0.08     0.00
## 4330           Konami Digital Entertainment     0.09     0.26     0.05
## 4331                            D3Publisher     0.37     0.05     0.00
## 4332 Warner Bros. Interactive Entertainment     0.21     0.21     0.00
## 4333                             Infogrames     0.32     0.12     0.00
## 4334                             Tecmo Koei     0.22     0.03     0.00
## 4335                                  Atlus     0.00     0.00     0.42
## 4336                                    THQ     0.32     0.12     0.00
## 4337                                Ubisoft     0.41     0.00     0.00
## 4338                                  Atari     0.42     0.02     0.00
## 4339                     Namco Bandai Games     0.00     0.00     0.42
## 4340                           Midway Games     0.26     0.15     0.00
## 4341             Disney Interactive Studios     0.39     0.02     0.01
## 4342                             Activision     0.41     0.00     0.00
## 4343                                   Sega     0.12     0.28     0.00
## 4344            Sony Computer Entertainment     0.00     0.06     0.00
## 4345                                 Square     0.00     0.00     0.42
## 4346             Disney Interactive Studios     0.09     0.02     0.00
## 4347                             Tecmo Koei     0.04     0.03     0.36
## 4348 Warner Bros. Interactive Entertainment     0.32     0.09     0.00
## 4349            Sony Computer Entertainment     0.25     0.17     0.00
## 4350                                    THQ     0.34     0.10     0.00
## 4351                        Electronic Arts     0.35     0.09     0.00
## 4352 Warner Bros. Interactive Entertainment     0.21     0.16     0.01
## 4353                                  Atari     0.42     0.02     0.00
## 4354                                    THQ     0.35     0.09     0.00
## 4355                        Electronic Arts     0.40     0.02     0.00
## 4356                  Acclaim Entertainment     0.36     0.07     0.00
## 4357                        Electronic Arts     0.21     0.20     0.00
## 4358                      Eidos Interactive     0.25     0.17     0.00
## 4359           Konami Digital Entertainment     0.02     0.27     0.11
## 4360                        Electronic Arts     0.22     0.17     0.00
## 4361           Konami Digital Entertainment     0.14     0.09     0.19
## 4362                         Ubisoft Annecy     0.13     0.21     0.07
## 4363             Disney Interactive Studios     0.16     0.21     0.00
## 4364                           Nordic Games     0.00     0.39     0.00
## 4365                     Bethesda Softworks     0.13     0.29     0.00
## 4366                             Activision     0.23     0.14     0.00
## 4367                            Tigervision     0.42     0.03     0.00
## 4368                                    THQ     0.22     0.17     0.00
## 4369                                Ubisoft     0.15     0.26     0.00
## 4370                               Nintendo     0.32     0.12     0.00
## 4371                        Electronic Arts     0.18     0.22     0.00
## 4372 Warner Bros. Interactive Entertainment     0.30     0.11     0.01
## 4373             Disney Interactive Studios     0.42     0.00     0.00
## 4374           Konami Digital Entertainment     0.25     0.15     0.00
## 4375           Konami Digital Entertainment     0.22     0.17     0.00
## 4376                                    THQ     0.13     0.23     0.00
## 4377                              505 Games     0.42     0.00     0.00
## 4378                              MTV Games     0.41     0.00     0.00
## 4379                                  Spike     0.37     0.01     0.00
## 4380                              505 Games     0.38     0.04     0.00
## 4381            Sony Computer Entertainment     0.37     0.01     0.00
## 4382           Konami Digital Entertainment     0.06     0.33     0.02
## 4383                        Electronic Arts     0.42     0.02     0.00
## 4384           Konami Digital Entertainment     0.22     0.17     0.00
## 4385                                    THQ     0.37     0.01     0.00
## 4386                          Vivendi Games     0.22     0.17     0.00
## 4387                             Activision     0.22     0.17     0.00
## 4388                               Nintendo     0.13     0.15     0.14
## 4389                                   Sega     0.09     0.24     0.03
## 4390                             Activision     0.30     0.12     0.00
## 4391                     Namco Bandai Games     0.26     0.14     0.01
## 4392                     Bethesda Softworks     0.14     0.21     0.02
## 4393                             Activision     0.19     0.18     0.00
## 4394                                    THQ     0.04     0.26     0.00
## 4395                             Activision     0.26     0.14     0.00
## 4396                        Electronic Arts     0.22     0.17     0.00
## 4397                        Electronic Arts     0.33     0.10     0.00
## 4398                   Take-Two Interactive     0.37     0.03     0.02
## 4399                     Namco Bandai Games     0.00     0.00     0.41
## 4400                        Electronic Arts     0.35     0.08     0.00
## 4401                        Electronic Arts     0.37     0.01     0.00
## 4402                          Vivendi Games     0.33     0.10     0.00
## 4403                               Nintendo     0.00     0.00     0.43
## 4404                        Fox Interactive     0.25     0.17     0.00
## 4405                             Activision     0.36     0.04     0.00
## 4406                             SquareSoft     0.07     0.05     0.30
## 4407             Disney Interactive Studios     0.25     0.15     0.00
## 4408                              LucasArts     0.33     0.10     0.00
## 4409                                   Sega     0.16     0.23     0.00
## 4410                                Ubisoft     0.40     0.01     0.00
## 4411                            Square Enix     0.13     0.00     0.31
## 4412                     Namco Bandai Games     0.00     0.00     0.44
## 4413                     Namco Bandai Games     0.25     0.17     0.00
## 4414                       Crystal Dynamics     0.25     0.17     0.00
## 4415                            Hudson Soft     0.00     0.00     0.44
## 4416                 Microsoft Game Studios     0.25     0.15     0.01
## 4417                                Ubisoft     0.10     0.29     0.00
## 4418           Konami Digital Entertainment     0.26     0.14     0.00
## 4419                            Hudson Soft     0.16     0.03     0.15
## 4420                         GT Interactive     0.35     0.08     0.00
## 4421                             Activision     0.32     0.08     0.00
## 4422                        Electronic Arts     0.40     0.01     0.02
## 4423                                    THQ     0.34     0.09     0.00
## 4424                              Banpresto     0.00     0.00     0.44
## 4425             Disney Interactive Studios     0.19     0.20     0.00
## 4426                                    3DO     0.24     0.17     0.00
## 4427                             Activision     0.28     0.12     0.00
## 4428            Sony Computer Entertainment     0.17     0.13     0.06
## 4429                                    THQ     0.34     0.08     0.00
## 4430                             Activision     0.40     0.00     0.00
## 4431           Konami Digital Entertainment     0.00     0.00     0.44
## 4432            Sony Computer Entertainment     0.24     0.17     0.00
## 4433                       Tomy Corporation     0.00     0.00     0.43
## 4434                        Electronic Arts     0.41     0.00     0.00
## 4435                               Nintendo     0.34     0.09     0.00
## 4436                                 Capcom     0.26     0.12     0.01
## 4437                                    THQ     0.31     0.12     0.00
## 4438                                  Atari     0.41     0.03     0.00
## 4439                        Electronic Arts     0.00     0.28     0.05
## 4440                          Vivendi Games     0.19     0.18     0.00
## 4441                     Namco Bandai Games     0.00     0.00     0.44
## 4442                               Nintendo     0.09     0.02     0.32
## 4443                            D3Publisher     0.25     0.14     0.00
## 4444                      Eidos Interactive     0.34     0.09     0.00
## 4445                  Majesco Entertainment     0.31     0.12     0.00
## 4446                          Vivendi Games     0.26     0.13     0.00
## 4447                               Nintendo     0.34     0.09     0.00
## 4448                     Namco Bandai Games     0.41     0.00     0.00
## 4449                                    THQ     0.31     0.12     0.00
## 4450                                  Atari     0.36     0.01     0.00
## 4451                   Take-Two Interactive     0.36     0.04     0.01
## 4452                              LucasArts     0.38     0.02     0.00
## 4453                    Knowledge Adventure     0.41     0.00     0.00
## 4454            Sony Computer Entertainment     0.00     0.06     0.00
## 4455                                Ubisoft     0.28     0.12     0.00
## 4456                                   Sega     0.00     0.00     0.44
## 4457                     Namco Bandai Games     0.00     0.00     0.44
## 4458                             Activision     0.26     0.12     0.00
## 4459           Konami Digital Entertainment     0.00     0.00     0.44
## 4460                           Midway Games     0.21     0.17     0.00
## 4461                                    THQ     0.36     0.01     0.00
## 4462                                  Atari     0.19     0.12     0.07
## 4463            Sony Computer Entertainment     0.11     0.25     0.00
## 4464           Konami Digital Entertainment     0.24     0.15     0.00
## 4465                             Activision     0.35     0.07     0.00
## 4466           Konami Digital Entertainment     0.35     0.05     0.00
## 4467                               Nintendo     0.26     0.10     0.07
## 4468                                    THQ     0.40     0.00     0.00
## 4469            Sony Computer Entertainment     0.21     0.17     0.00
## 4470                        Electronic Arts     0.18     0.21     0.00
## 4471           Konami Digital Entertainment     0.19     0.07     0.12
## 4472                             Tecmo Koei     0.19     0.09     0.11
## 4473                             Activision     0.20     0.19     0.00
## 4474                        Electronic Arts     0.31     0.12     0.00
## 4475                        Electronic Arts     0.41     0.02     0.00
## 4476                             Activision     0.17     0.00     0.00
## 4477                               Nintendo     0.16     0.00     0.26
## 4478                   Take-Two Interactive     0.24     0.16     0.00
## 4479                        Electronic Arts     0.32     0.09     0.00
## 4480                                    THQ     0.31     0.12     0.00
## 4481                          Tetris Online     0.20     0.13     0.06
## 4482                   Take-Two Interactive     0.26     0.13     0.00
## 4483                            Square Enix     0.16     0.20     0.00
## 4484             Disney Interactive Studios     0.36     0.01     0.00
## 4485                                   Sega     0.00     0.00     0.43
## 4486                              LucasArts     0.19     0.18     0.00
## 4487                        Electronic Arts     0.40     0.02     0.00
## 4488                        Electronic Arts     0.21     0.17     0.00
## 4489                               Nintendo     0.17     0.13     0.11
## 4490            Sony Computer Entertainment     0.00     0.34     0.00
## 4491                     Namco Bandai Games     0.15     0.14     0.09
## 4492                              505 Games     0.18     0.18     0.00
## 4493            Sony Computer Entertainment     0.24     0.16     0.00
## 4494                             Activision     0.26     0.13     0.00
## 4495 Warner Bros. Interactive Entertainment     0.23     0.17     0.00
## 4496    Sony Computer Entertainment America     0.35     0.00     0.00
## 4497                                 Capcom     0.28     0.11     0.01
## 4498                             Tecmo Koei     0.22     0.09     0.07
## 4499                      Eidos Interactive     0.21     0.17     0.00
## 4500                             Activision     0.40     0.02     0.00
## 4501                     Namco Bandai Games     0.21     0.17     0.00
## 4502                     BAM! Entertainment     0.31     0.11     0.00
## 4503                                 Capcom     0.18     0.07     0.17
## 4504                                Ubisoft     0.40     0.00     0.00
## 4505                       Enix Corporation     0.00     0.00     0.43
## 4506                              505 Games     0.22     0.14     0.00
## 4507                   Take-Two Interactive     0.27     0.12     0.00
## 4508                                  Atari     0.19     0.09     0.08
## 4509                                    N/A     0.31     0.11     0.00
## 4510                        Electronic Arts     0.37     0.00     0.00
## 4511                                  Atari     0.15     0.04     0.00
## 4512                              Interplay     0.21     0.16     0.00
## 4513                               Nintendo     0.25     0.06     0.07
## 4514                           Midway Games     0.28     0.14     0.00
## 4515            Sony Computer Entertainment     0.36     0.01     0.00
## 4516                   Take-Two Interactive     0.39     0.01     0.00
## 4517              Sony Online Entertainment     0.21     0.16     0.00
## 4518                                 Capcom     0.21     0.06     0.13
## 4519            Sony Computer Entertainment     0.10     0.07     0.24
## 4520                      Rising Star Games     0.23     0.12     0.04
## 4521                                Ubisoft     0.26     0.11     0.00
## 4522                     Namco Bandai Games     0.09     0.07     0.25
## 4523                        Electronic Arts     0.21     0.16     0.00
## 4524 Warner Bros. Interactive Entertainment     0.29     0.11     0.00
## 4525                            Square Enix     0.07     0.05     0.29
## 4526           Konami Digital Entertainment     0.34     0.03     0.03
## 4527                   Take-Two Interactive     0.16     0.22     0.00
## 4528                                    THQ     0.25     0.14     0.00
## 4529                                Ubisoft     0.17     0.01     0.23
## 4530                                Ubisoft     0.39     0.01     0.00
## 4531                                   Sega     0.19     0.17     0.00
## 4532                     Bethesda Softworks     0.10     0.25     0.02
## 4533                                Mastiff     0.40     0.00     0.00
## 4534                                Ubisoft     0.39     0.00     0.00
## 4535                                Ubisoft     0.19     0.20     0.00
## 4536                        Electronic Arts     0.33     0.09     0.00
## 4537                                  Atari     0.31     0.11     0.00
## 4538                           Midway Games     0.33     0.08     0.00
## 4539             Disney Interactive Studios     0.39     0.01     0.00
## 4540                                Mastiff     0.40     0.00     0.00
## 4541                 Microsoft Game Studios     0.02     0.36     0.00
## 4542                             Activision     0.21     0.16     0.00
## 4543                            989 Studios     0.24     0.16     0.00
## 4544                                   Sega     0.21     0.16     0.00
## 4545                          Vivendi Games     0.35     0.05     0.00
## 4546                            D3Publisher     0.39     0.00     0.00
## 4547                              Banpresto     0.00     0.00     0.42
## 4548                                   Sega     0.00     0.00     0.42
## 4549                        Electronic Arts     0.33     0.09     0.00
## 4550                        Electronic Arts     0.16     0.19     0.00
## 4551                        Electronic Arts     0.15     0.25     0.00
## 4552                          Vivendi Games     0.21     0.16     0.00
## 4553                   Nippon Ichi Software     0.12     0.06     0.21
## 4554                                 Capcom     0.14     0.05     0.22
## 4555                                    THQ     0.11     0.20     0.00
## 4556                      Eidos Interactive     0.35     0.01     0.00
## 4557                   Take-Two Interactive     0.21     0.16     0.00
## 4558                        Electronic Arts     0.33     0.09     0.00
## 4559                        Electronic Arts     0.31     0.10     0.00
## 4560            Sony Computer Entertainment     0.21     0.16     0.00
## 4561            Sony Computer Entertainment     0.24     0.16     0.00
## 4562                     Namco Bandai Games     0.00     0.00     0.42
## 4563                              Psygnosis     0.24     0.16     0.00
## 4564                                    THQ     0.34     0.05     0.00
## 4565                             Activision     0.33     0.08     0.00
## 4566                        Electronic Arts     0.35     0.04     0.00
## 4567                               Nintendo     0.19     0.14     0.06
## 4568                          Vivendi Games     0.11     0.20     0.00
## 4569                            D3Publisher     0.22     0.16     0.00
## 4570                               Nintendo     0.00     0.00     0.41
## 4571                              Psygnosis     0.24     0.16     0.00
## 4572                  Acclaim Entertainment     0.21     0.16     0.00
## 4573                           Gotham Games     0.23     0.16     0.00
## 4574                             Activision     0.25     0.13     0.00
## 4575                            D3Publisher     0.13     0.19     0.00
## 4576                        Electronic Arts     0.23     0.16     0.00
## 4577 Warner Bros. Interactive Entertainment     0.16     0.17     0.00
## 4578           Konami Digital Entertainment     0.21     0.07     0.09
## 4579                                    ESP     0.00     0.00     0.42
## 4580                        Electronic Arts     0.23     0.15     0.01
## 4581                            Global Star     0.32     0.09     0.00
## 4582           Konami Digital Entertainment     0.30     0.11     0.00
## 4583                                    THQ     0.21     0.16     0.00
## 4584                                    THQ     0.21     0.16     0.00
## 4585                                  Atari     0.21     0.16     0.00
## 4586                                Ubisoft     0.13     0.22     0.01
## 4587                 Zoo Digital Publishing     0.35     0.01     0.00
## 4588                        Electronic Arts     0.39     0.00     0.00
## 4589                                Ubisoft     0.30     0.11     0.00
## 4590                             Activision     0.23     0.15     0.00
## 4591                             Activision     0.30     0.11     0.00
## 4592                                    TYO     0.23     0.16     0.00
## 4593                                   Sega     0.04     0.28     0.01
## 4594            Sony Computer Entertainment     0.00     0.00     0.39
## 4595                                Ubisoft     0.40     0.00     0.00
## 4596                                    THQ     0.42     0.00     0.00
## 4597                     Namco Bandai Games     0.00     0.00     0.42
## 4598                                  Atari     0.35     0.05     0.00
## 4599           Konami Digital Entertainment     0.00     0.00     0.42
## 4600                                Ubisoft     0.39     0.00     0.00
## 4601                                    THQ     0.21     0.16     0.00
## 4602             Disney Interactive Studios     0.15     0.17     0.00
## 4603                               Nintendo     0.34     0.07     0.00
## 4604           Konami Digital Entertainment     0.00     0.00     0.39
## 4605                                    3DO     0.34     0.07     0.00
## 4606                           Midway Games     0.35     0.06     0.00
## 4607                           Midway Games     0.34     0.07     0.00
## 4608                        Electronic Arts     0.32     0.08     0.00
## 4609                        Electronic Arts     0.39     0.00     0.00
## 4610            Sony Computer Entertainment     0.35     0.01     0.00
## 4611                                Ubisoft     0.38     0.01     0.00
## 4612           Konami Digital Entertainment     0.32     0.09     0.00
## 4613                                 Capcom     0.32     0.08     0.00
## 4614                          Vivendi Games     0.38     0.00     0.00
## 4615                     Namco Bandai Games     0.00     0.00     0.42
## 4616                                    N/A     0.30     0.11     0.00
## 4617                             Activision     0.23     0.15     0.00
## 4618                             Activision     0.21     0.16     0.00
## 4619                               Nintendo     0.00     0.14     0.27
## 4620                     Namco Bandai Games     0.00     0.00     0.42
## 4621                        Electronic Arts     0.32     0.08     0.00
## 4622                              LucasArts     0.20     0.16     0.00
## 4623                            Deep Silver     0.14     0.18     0.03
## 4624                   Take-Two Interactive     0.39     0.00     0.00
## 4625                                 Capcom     0.14     0.10     0.16
## 4626                  Universal Interactive     0.20     0.16     0.00
## 4627                                   Sega     0.32     0.08     0.00
## 4628           Konami Digital Entertainment     0.18     0.14     0.05
## 4629                   Take-Two Interactive     0.36     0.03     0.00
## 4630           Konami Digital Entertainment     0.02     0.02     0.35
## 4631 Warner Bros. Interactive Entertainment     0.24     0.12     0.00
## 4632                                    THQ     0.30     0.11     0.00
## 4633                        Electronic Arts     0.31     0.09     0.00
## 4634                                    THQ     0.31     0.09     0.00
## 4635                   Take-Two Interactive     0.21     0.17     0.00
## 4636                                Unknown     0.39     0.00     0.00
## 4637                               Nintendo     0.20     0.14     0.05
## 4638                            Square Enix     0.22     0.02     0.16
## 4639                                   Sega     0.19     0.16     0.03
## 4640                              Telegames     0.39     0.00     0.00
## 4641             Disney Interactive Studios     0.27     0.09     0.00
## 4642                        Electronic Arts     0.31     0.09     0.00
## 4643             Disney Interactive Studios     0.20     0.16     0.00
## 4644                                 Capcom     0.17     0.12     0.10
## 4645                                 Capcom     0.16     0.11     0.12
## 4646                                Ubisoft     0.36     0.02     0.00
## 4647                               Nintendo     0.18     0.16     0.03
## 4648                   Mud Duck Productions     0.20     0.16     0.00
## 4649                                Unknown     0.25     0.12     0.00
## 4650                             Screenlife     0.00     0.00     0.42
## 4651                           Midway Games     0.20     0.16     0.00
## 4652                                   Sega     0.00     0.00     0.42
## 4653                              LucasArts     0.30     0.10     0.00
## 4654                               Nintendo     0.19     0.11     0.09
## 4655                  Acclaim Entertainment     0.20     0.16     0.00
## 4656           Konami Digital Entertainment     0.15     0.12     0.11
## 4657                                Ubisoft     0.19     0.16     0.00
## 4658            Sony Computer Entertainment     0.20     0.16     0.00
## 4659                     BAM! Entertainment     0.30     0.11     0.00
## 4660            Sony Computer Entertainment     0.20     0.16     0.00
## 4661                                   Sega     0.36     0.02     0.00
## 4662                                Ubisoft     0.30     0.11     0.00
## 4663                                    THQ     0.39     0.00     0.00
## 4664                      Eidos Interactive     0.41     0.00     0.00
## 4665           Konami Digital Entertainment     0.04     0.21     0.05
## 4666                                   Sega     0.00     0.00     0.41
## 4667                             Activision     0.23     0.16     0.00
## 4668                          Vivendi Games     0.34     0.01     0.00
## 4669                        Electronic Arts     0.24     0.14     0.00
## 4670            Sony Computer Entertainment     0.20     0.16     0.00
## 4671                     Hasbro Interactive     0.23     0.16     0.00
## 4672                                Ubisoft     0.26     0.13     0.00
## 4673                     Namco Bandai Games     0.00     0.00     0.41
## 4674                          Vivendi Games     0.36     0.02     0.00
## 4675            Sony Computer Entertainment     0.23     0.16     0.00
## 4676                   Take-Two Interactive     0.23     0.16     0.00
## 4677                 Focus Home Interactive     0.05     0.31     0.00
## 4678           Konami Digital Entertainment     0.00     0.00     0.39
## 4679           Konami Digital Entertainment     0.22     0.09     0.04
## 4680                     Namco Bandai Games     0.00     0.00     0.41
## 4681                                Ubisoft     0.21     0.12     0.03
## 4682                        Electronic Arts     0.13     0.15     0.07
## 4683                                    THQ     0.20     0.16     0.00
## 4684                            Square Enix     0.00     0.00     0.41
## 4685                             Activision     0.20     0.16     0.00
## 4686                              505 Games     0.07     0.20     0.09
## 4687 Warner Bros. Interactive Entertainment     0.22     0.15     0.00
## 4688                                   Sega     0.00     0.27     0.00
## 4689 Warner Bros. Interactive Entertainment     0.27     0.08     0.00
## 4690                                    THQ     0.36     0.02     0.00
## 4691                             Activision     0.36     0.02     0.00
## 4692                        Electronic Arts     0.31     0.06     0.00
## 4693                                   Sega     0.00     0.00     0.41
## 4694                                Ubisoft     0.22     0.15     0.00
## 4695           Konami Digital Entertainment     0.03     0.19     0.10
## 4696                                    THQ     0.34     0.01     0.00
## 4697                    Knowledge Adventure     0.38     0.00     0.00
## 4698                              MTV Games     0.19     0.15     0.00
## 4699                            Pioneer LDC     0.23     0.16     0.00
## 4700                        Electronic Arts     0.08     0.23     0.01
## 4701                            Hudson Soft     0.00     0.00     0.41
## 4702                                    THQ     0.29     0.07     0.00
## 4703            Sony Computer Entertainment     0.00     0.00     0.41
## 4704                            Codemasters     0.07     0.26     0.02
## 4705                     Virgin Interactive     0.23     0.16     0.00
## 4706                                    THQ     0.37     0.01     0.00
## 4707                             Activision     0.20     0.18     0.00
## 4708                               Nintendo     0.10     0.02     0.25
## 4709                                  Titus     0.33     0.07     0.00
## 4710                     Namco Bandai Games     0.00     0.00     0.41
## 4711                   Take-Two Interactive     0.01     0.39     0.00
## 4712                                  Atari     0.20     0.16     0.00
## 4713            Sony Computer Entertainment     0.20     0.16     0.00
## 4714            Sony Computer Entertainment     0.13     0.09     0.16
## 4715                                Ubisoft     0.23     0.14     0.00
## 4716                                  Taito     0.00     0.00     0.38
## 4717                        Electronic Arts     0.33     0.04     0.01
## 4718                   Take-Two Interactive     0.15     0.22     0.00
## 4719                                    THQ     0.15     0.22     0.00
## 4720                             Activision     0.15     0.06     0.00
## 4721                               Metro 3D     0.11     0.08     0.19
## 4722            Sony Computer Entertainment     0.20     0.16     0.00
## 4723                     Namco Bandai Games     0.00     0.03     0.37
## 4724                           Midway Games     0.31     0.08     0.00
## 4725                   Take-Two Interactive     0.34     0.01     0.00
## 4726                     Namco Bandai Games     0.00     0.00     0.41
## 4727                     Empire Interactive     0.23     0.15     0.00
## 4728                                   Sega     0.32     0.02     0.04
## 4729                        Magical Company     0.15     0.10     0.12
## 4730                      Rising Star Games     0.21     0.05     0.13
## 4731                   Take-Two Interactive     0.34     0.01     0.00
## 4732           Konami Digital Entertainment     0.00     0.00     0.40
## 4733                                    THQ     0.24     0.09     0.00
## 4734                                   Sega     0.00     0.00     0.41
## 4735                             Activision     0.23     0.02     0.00
## 4736                             Activision     0.38     0.00     0.00
## 4737                             Activision     0.15     0.23     0.00
## 4738                               Nintendo     0.00     0.00     0.41
## 4739                        Electronic Arts     0.08     0.26     0.00
## 4740                           Midway Games     0.34     0.01     0.00
## 4741           Konami Digital Entertainment     0.00     0.00     0.41
## 4742                                Ubisoft     0.20     0.16     0.00
## 4743                                    THQ     0.16     0.18     0.00
## 4744                              MTV Games     0.24     0.13     0.00
## 4745                        Electronic Arts     0.19     0.18     0.00
## 4746            Sony Computer Entertainment     0.18     0.15     0.02
## 4747                        Electronic Arts     0.35     0.02     0.01
## 4748                                Ubisoft     0.29     0.08     0.00
## 4749                        Electronic Arts     0.23     0.15     0.00
## 4750                        Electronic Arts     0.34     0.01     0.00
## 4751                                    THQ     0.30     0.08     0.00
## 4752                                  PQube     0.21     0.07     0.09
## 4753                   Take-Two Interactive     0.18     0.17     0.00
## 4754                            Square Enix     0.00     0.00     0.41
## 4755                             Activision     0.20     0.15     0.00
## 4756                     Namco Bandai Games     0.26     0.04     0.06
## 4757            Sony Computer Entertainment     0.23     0.15     0.00
## 4758            Sony Computer Entertainment     0.23     0.15     0.00
## 4759                                  Atari     0.38     0.02     0.00
## 4760                             Activision     0.36     0.02     0.00
## 4761                              505 Games     0.21     0.15     0.00
## 4762                                 Coleco     0.38     0.02     0.00
## 4763                                    THQ     0.31     0.08     0.00
## 4764                                Ubisoft     0.27     0.09     0.00
## 4765                                Ubisoft     0.29     0.08     0.00
## 4766                                Ubisoft     0.36     0.01     0.00
## 4767                        Electronic Arts     0.36     0.02     0.00
## 4768                      Rising Star Games     0.26     0.03     0.10
## 4769                            Square Enix     0.04     0.11     0.22
## 4770                              LucasArts     0.21     0.12     0.00
## 4771                     Namco Bandai Games     0.17     0.15     0.02
## 4772           Konami Digital Entertainment     0.31     0.01     0.03
## 4773                              Imagineer     0.00     0.00     0.40
## 4774                   Take-Two Interactive     0.33     0.01     0.00
## 4775                           Midway Games     0.20     0.15     0.00
## 4776                                Unknown     0.20     0.15     0.00
## 4777                           Midway Games     0.22     0.12     0.00
## 4778                     Namco Bandai Games     0.00     0.00     0.40
## 4779                                   Sega     0.37     0.02     0.00
## 4780                           Midway Games     0.20     0.15     0.00
## 4781                        Electronic Arts     0.31     0.08     0.00
## 4782                             Tecmo Koei     0.00     0.00     0.40
## 4783                       Activision Value     0.37     0.00     0.00
## 4784                            Codemasters     0.34     0.03     0.01
## 4785             Disney Interactive Studios     0.20     0.15     0.00
## 4786                                    THQ     0.29     0.11     0.00
## 4787                            Square Enix     0.15     0.15     0.03
## 4788            Sony Computer Entertainment     0.00     0.00     0.38
## 4789                               Nintendo     0.25     0.07     0.07
## 4790                            989 Studios     0.22     0.15     0.00
## 4791                                    THQ     0.31     0.08     0.00
## 4792                                 Takara     0.00     0.00     0.40
## 4793                        Electronic Arts     0.28     0.09     0.00
## 4794                               Nintendo     0.19     0.10     0.08
## 4795                                    THQ     0.35     0.02     0.00
## 4796                                   Sega     0.00     0.00     0.40
## 4797           Konami Digital Entertainment     0.27     0.01     0.09
## 4798                            989 Studios     0.22     0.15     0.00
## 4799                                 Capcom     0.18     0.12     0.06
## 4800                          Vivendi Games     0.12     0.01     0.00
## 4801                     Namco Bandai Games     0.00     0.00     0.40
## 4802                  Acclaim Entertainment     0.37     0.03     0.00
## 4803                           Midway Games     0.32     0.07     0.00
## 4804                               Nintendo     0.32     0.07     0.00
## 4805                                  Kemco     0.32     0.07     0.00
## 4806                  Acclaim Entertainment     0.20     0.15     0.00
## 4807                             Activision     0.17     0.14     0.00
## 4808                                    THQ     0.12     0.21     0.00
## 4809                                  Atari     0.33     0.01     0.00
## 4810                        Electronic Arts     0.01     0.36     0.00
## 4811                             Infogrames     0.22     0.15     0.00
## 4812                             Activision     0.20     0.15     0.00
## 4813            Sony Computer Entertainment     0.33     0.01     0.00
## 4814                                 GungHo     0.20     0.01     0.16
## 4815                              505 Games     0.20     0.15     0.00
## 4816                 Microsoft Game Studios     0.26     0.10     0.00
## 4817                                    THQ     0.29     0.11     0.00
## 4818                             Activision     0.36     0.00     0.00
## 4819 Warner Bros. Interactive Entertainment     0.18     0.19     0.00
## 4820                     Mentor Interactive     0.37     0.00     0.00
## 4821                                    THQ     0.32     0.07     0.00
## 4822                        Electronic Arts     0.02     0.31     0.00
## 4823                           Midway Games     0.31     0.08     0.00
## 4824                                Ubisoft     0.34     0.03     0.00
## 4825                        Electronic Arts     0.24     0.14     0.00
## 4826                        Electronic Arts     0.22     0.15     0.00
## 4827             Disney Interactive Studios     0.08     0.26     0.00
## 4828                               Nintendo     0.00     0.00     0.39
## 4829                                    THQ     0.29     0.11     0.00
## 4830                              Zoo Games     0.38     0.00     0.00
## 4831                          Vivendi Games     0.22     0.15     0.00
## 4832                             Activision     0.32     0.05     0.00
## 4833                                    THQ     0.36     0.00     0.00
## 4834                   Take-Two Interactive     0.17     0.17     0.00
## 4835                                Ubisoft     0.18     0.18     0.00
## 4836                               ChunSoft     0.00     0.00     0.40
## 4837           Konami Digital Entertainment     0.09     0.12     0.15
## 4838                             Activision     0.31     0.08     0.00
## 4839                        Electronic Arts     0.35     0.03     0.00
## 4840                                   Sega     0.13     0.20     0.00
## 4841                        Electronic Arts     0.35     0.02     0.00
## 4842                                    RTL     0.17     0.18     0.00
## 4843            Sony Computer Entertainment     0.00     0.00     0.37
## 4844            Sony Computer Entertainment     0.19     0.15     0.00
## 4845                             Activision     0.32     0.03     0.01
## 4846                             Activision     0.03     0.33     0.00
## 4847                                  Atari     0.24     0.12     0.00
## 4848                     Virgin Interactive     0.22     0.15     0.00
## 4849                                Unknown     0.19     0.15     0.00
## 4850                     Namco Bandai Games     0.00     0.00     0.40
## 4851                             Activision     0.31     0.08     0.00
## 4852                            D3Publisher     0.37     0.00     0.00
## 4853                     Namco Bandai Games     0.00     0.00     0.40
## 4854 Warner Bros. Interactive Entertainment     0.35     0.02     0.00
## 4855           Konami Digital Entertainment     0.31     0.02     0.04
## 4856                     Jester Interactive     0.33     0.01     0.00
## 4857           Konami Digital Entertainment     0.19     0.15     0.00
## 4858             Disney Interactive Studios     0.21     0.15     0.00
## 4859                      Eidos Interactive     0.12     0.22     0.00
## 4860                 Focus Home Interactive     0.06     0.30     0.00
## 4861                   Take-Two Interactive     0.19     0.15     0.00
## 4862                             Activision     0.26     0.11     0.00
## 4863                        Electronic Arts     0.33     0.03     0.00
## 4864                                    THQ     0.19     0.15     0.01
## 4865                              LucasArts     0.22     0.14     0.00
## 4866                        Electronic Arts     0.38     0.01     0.00
## 4867 Warner Bros. Interactive Entertainment     0.20     0.16     0.00
## 4868                                Level 5     0.00     0.00     0.39
## 4869                      Rising Star Games     0.20     0.11     0.04
## 4870                     Hasbro Interactive     0.22     0.15     0.00
## 4871                                   Sega     0.22     0.14     0.00
## 4872                     Virgin Interactive     0.22     0.15     0.00
## 4873                     Mattel Interactive     0.37     0.02     0.00
## 4874                     Namco Bandai Games     0.00     0.00     0.39
## 4875                                    THQ     0.20     0.15     0.00
## 4876                     Namco Bandai Games     0.14     0.00     0.25
## 4877                                    THQ     0.28     0.10     0.00
## 4878                     Namco Bandai Games     0.09     0.04     0.24
## 4879                        Electronic Arts     0.32     0.01     0.01
## 4880                            Deep Silver     0.13     0.18     0.03
## 4881                        Electronic Arts     0.01     0.32     0.00
## 4882                        Electronic Arts     0.13     0.20     0.00
## 4883                                   Sega     0.29     0.08     0.00
## 4884                     Namco Bandai Games     0.18     0.04     0.15
## 4885                        Electronic Arts     0.22     0.12     0.00
## 4886                               Nintendo     0.00     0.00     0.39
## 4887                     Bethesda Softworks     0.12     0.20     0.02
## 4888                     Namco Bandai Games     0.26     0.09     0.00
## 4889                        Electronic Arts     0.27     0.09     0.00
## 4890                             Activision     0.36     0.00     0.00
## 4891                        Electronic Arts     0.23     0.07     0.03
## 4892                                Ubisoft     0.36     0.00     0.00
## 4893                             Activision     0.37     0.02     0.00
## 4894                        Electronic Arts     0.36     0.01     0.00
## 4895                   Take-Two Interactive     0.22     0.15     0.00
## 4896                                    THQ     0.36     0.00     0.00
## 4897                               Nintendo     0.30     0.08     0.00
## 4898                                    THQ     0.39     0.00     0.00
## 4899                             Enterbrain     0.00     0.00     0.37
## 4900                             Activision     0.19     0.14     0.00
## 4901                                   Sega     0.23     0.12     0.00
## 4902           Konami Digital Entertainment     0.12     0.16     0.05
## 4903                        Electronic Arts     0.08     0.26     0.00
## 4904                     Namco Bandai Games     0.00     0.00     0.39
## 4905                        Electronic Arts     0.29     0.08     0.00
## 4906                                Ubisoft     0.25     0.06     0.05
## 4907                        Electronic Arts     0.28     0.10     0.00
## 4908                  Acclaim Entertainment     0.36     0.03     0.00
## 4909                               Nintendo     0.00     0.00     0.34
## 4910                  Acclaim Entertainment     0.31     0.07     0.00
## 4911                                    3DO     0.31     0.07     0.00
## 4912                            Square Enix     0.21     0.07     0.08
## 4913                                    THQ     0.38     0.01     0.00
## 4914            Sony Computer Entertainment     0.18     0.15     0.00
## 4915                               Nintendo     0.23     0.06     0.09
## 4916                                   Sega     0.23     0.12     0.01
## 4917                                   Sega     0.15     0.19     0.00
## 4918                             Activision     0.20     0.12     0.00
## 4919                                   Sega     0.14     0.18     0.00
## 4920            Sony Computer Entertainment     0.19     0.15     0.00
## 4921                              LucasArts     0.18     0.17     0.00
## 4922                             Activision     0.36     0.00     0.00
## 4923                                Ubisoft     0.16     0.13     0.06
## 4924                      Eidos Interactive     0.19     0.15     0.00
## 4925                        Electronic Arts     0.16     0.17     0.00
## 4926                    Human Entertainment     0.00     0.00     0.39
## 4927                             Activision     0.19     0.15     0.00
## 4928                                   Sega     0.17     0.16     0.00
## 4929                                    THQ     0.25     0.10     0.00
## 4930                                Ubisoft     0.19     0.15     0.00
## 4931                                 Takara     0.00     0.00     0.39
## 4932                              Banpresto     0.00     0.00     0.39
## 4933                   Take-Two Interactive     0.24     0.11     0.00
## 4934                          Vivendi Games     0.19     0.15     0.00
## 4935                        Electronic Arts     0.28     0.10     0.00
## 4936                      Eidos Interactive     0.29     0.06     0.01
## 4937                     Namco Bandai Games     0.00     0.00     0.39
## 4938                               Nintendo     0.30     0.02     0.04
## 4939                                 Capcom     0.19     0.15     0.00
## 4940                             Activision     0.36     0.00     0.00
## 4941            Sony Computer Entertainment     0.31     0.01     0.00
## 4942                                Ubisoft     0.29     0.08     0.00
## 4943                        Electronic Arts     0.19     0.15     0.00
## 4944                            Codemasters     0.03     0.29     0.01
## 4945                                Ubisoft     0.19     0.13     0.00
## 4946                          Vivendi Games     0.18     0.14     0.00
## 4947                             Tecmo Koei     0.12     0.05     0.20
## 4948           Konami Digital Entertainment     0.19     0.15     0.00
## 4949                               Data Age     0.36     0.02     0.00
## 4950           Konami Digital Entertainment     0.00     0.00     0.36
## 4951                              505 Games     0.36     0.00     0.00
## 4952                                    THQ     0.24     0.11     0.00
## 4953                     Namco Bandai Games     0.05     0.04     0.28
## 4954                        Electronic Arts     0.18     0.16     0.00
## 4955                                 Capcom     0.07     0.24     0.00
## 4956                                    THQ     0.18     0.16     0.01
## 4957                        Electronic Arts     0.28     0.10     0.00
## 4958                            Square Enix     0.17     0.13     0.03
## 4959                                    THQ     0.19     0.15     0.00
## 4960           Konami Digital Entertainment     0.18     0.14     0.00
## 4961                 Electronic Arts Victor     0.21     0.15     0.00
## 4962                                   Sega     0.09     0.20     0.00
## 4963                               Nintendo     0.00     0.00     0.38
## 4964                             Ghostlight     0.07     0.05     0.25
## 4965                               Nintendo     0.00     0.00     0.38
## 4966                         GT Interactive     0.21     0.15     0.00
## 4967                    Human Entertainment     0.00     0.00     0.36
## 4968                 Focus Home Interactive     0.22     0.13     0.00
## 4969                                   Sega     0.29     0.08     0.00
## 4970 Warner Bros. Interactive Entertainment     0.19     0.15     0.00
## 4971                     Namco Bandai Games     0.00     0.00     0.38
## 4972                           Nordic Games     0.00     0.36     0.00
## 4973                             Activision     0.33     0.02     0.00
## 4974                      Jack of All Games     0.27     0.10     0.00
## 4975                      Eidos Interactive     0.33     0.02     0.00
## 4976                             Ghostlight     0.28     0.01     0.06
## 4977            Sony Computer Entertainment     0.19     0.15     0.00
## 4978                       Tomy Corporation     0.34     0.02     0.00
## 4979                  Acclaim Entertainment     0.30     0.08     0.00
## 4980                        Electronic Arts     0.35     0.00     0.00
## 4981                                Ubisoft     0.38     0.00     0.00
## 4982                     Namco Bandai Games     0.00     0.00     0.38
## 4983                                Ubisoft     0.27     0.10     0.00
## 4984                                   Sega     0.10     0.00     0.00
## 4985                                   Sega     0.19     0.15     0.00
## 4986                        Electronic Arts     0.00     0.36     0.00
## 4987                               Nintendo     0.34     0.02     0.00
## 4988                                   Sega     0.14     0.17     0.00
## 4989                 Harmonix Music Systems     0.26     0.05     0.00
## 4990                                  Atlus     0.00     0.00     0.38
## 4991                              Avanquest     0.26     0.09     0.00
## 4992                        Electronic Arts     0.30     0.08     0.00
## 4993            Sony Computer Entertainment     0.11     0.08     0.17
## 4994                              505 Games     0.35     0.01     0.00
## 4995                      Eidos Interactive     0.21     0.14     0.00
## 4996                     Bethesda Softworks     0.18     0.17     0.00
## 4997                     Namco Bandai Games     0.00     0.00     0.36
## 4998                                    THQ     0.19     0.15     0.00
## 4999                     Empire Interactive     0.19     0.15     0.00
## 5000                                 Capcom     0.00     0.00     0.38
## 5001                        Electronic Arts     0.11     0.24     0.00
## 5002                        Electronic Arts     0.29     0.08     0.00
## 5003           Konami Digital Entertainment     0.15     0.11     0.10
## 5004                                Ubisoft     0.11     0.23     0.00
## 5005                        Electronic Arts     0.19     0.15     0.00
## 5006             Disney Interactive Studios     0.27     0.10     0.00
## 5007            Sony Computer Entertainment     0.14     0.04     0.16
## 5008                                  Atari     0.19     0.15     0.00
## 5009                            Square Enix     0.11     0.21     0.00
## 5010                     Namco Bandai Games     0.00     0.00     0.36
## 5011                        Electronic Arts     0.07     0.28     0.00
## 5012                       Enix Corporation     0.07     0.05     0.25
## 5013                                  Atari     0.06     0.00     0.31
## 5014           Konami Digital Entertainment     0.19     0.15     0.00
## 5015                             SquareSoft     0.00     0.00     0.38
## 5016                   Take-Two Interactive     0.19     0.15     0.00
## 5017                                   Sega     0.32     0.01     0.00
## 5018                        Electronic Arts     0.21     0.00     0.00
## 5019                                    THQ     0.16     0.16     0.00
## 5020                                 Capcom     0.17     0.07     0.12
## 5021           Konami Digital Entertainment     0.00     0.00     0.38
## 5022            Sony Computer Entertainment     0.21     0.14     0.00
## 5023                              Interplay     0.28     0.08     0.00
## 5024                                    THQ     0.32     0.01     0.00
## 5025                         GT Interactive     0.21     0.14     0.00
## 5026                                   Sega     0.16     0.00     0.20
## 5027                                Ubisoft     0.00     0.32     0.00
## 5028                              Banpresto     0.00     0.00     0.38
## 5029                     Namco Bandai Games     0.11     0.11     0.09
## 5030                       Black Bean Games     0.15     0.16     0.00
## 5031                             Activision     0.20     0.15     0.00
## 5032                               Nintendo     0.24     0.06     0.07
## 5033                     Namco Bandai Games     0.00     0.00     0.38
## 5034                                  Atlus     0.12     0.05     0.20
## 5035 Warner Bros. Interactive Entertainment     0.35     0.00     0.00
## 5036                                   Sega     0.18     0.12     0.00
## 5037            Sony Computer Entertainment     0.21     0.14     0.00
## 5038                                   Sega     0.09     0.22     0.00
## 5039                                Ubisoft     0.34     0.01     0.00
## 5040                             989 Sports     0.21     0.14     0.00
## 5041                             Activision     0.12     0.00     0.00
## 5042                                  Atari     0.35     0.02     0.00
## 5043                        Electronic Arts     0.21     0.13     0.00
## 5044                     Namco Bandai Games     0.13     0.04     0.19
## 5045                        Electronic Arts     0.14     0.15     0.00
## 5046                       Activision Value     0.35     0.00     0.00
## 5047                                Ubisoft     0.35     0.00     0.00
## 5048                             Activision     0.35     0.00     0.00
## 5049                 Microsoft Game Studios     0.00     0.33     0.00
## 5050                        Electronic Arts     0.35     0.00     0.00
## 5051                                  Atari     0.35     0.02     0.00
## 5052            Sony Computer Entertainment     0.18     0.14     0.00
## 5053                     Namco Bandai Games     0.00     0.00     0.38
## 5054           Konami Digital Entertainment     0.28     0.08     0.00
## 5055 Warner Bros. Interactive Entertainment     0.22     0.13     0.00
## 5056                                    THQ     0.24     0.07     0.00
## 5057           Konami Digital Entertainment     0.11     0.13     0.11
## 5058                                Ubisoft     0.17     0.14     0.00
## 5059                               Nintendo     0.17     0.14     0.04
## 5060                        Electronic Arts     0.29     0.08     0.00
## 5061                                    THQ     0.35     0.00     0.00
## 5062                                Ubisoft     0.35     0.00     0.00
## 5063                               Pinnacle     0.00     0.34     0.00
## 5064                             Activision     0.22     0.12     0.00
## 5065                            Codemasters     0.07     0.22     0.01
## 5066                                  Atari     0.35     0.02     0.00
## 5067                                 Capcom     0.10     0.17     0.05
## 5068                                  Atari     0.09     0.07     0.19
## 5069 Warner Bros. Interactive Entertainment     0.25     0.09     0.00
## 5070                                Ubisoft     0.35     0.00     0.00
## 5071                                   Sega     0.11     0.16     0.00
## 5072                             SquareSoft     0.00     0.00     0.35
## 5073                             Koch Media     0.11     0.20     0.00
## 5074                   Take-Two Interactive     0.34     0.00     0.00
## 5075                                  Atlus     0.00     0.00     0.37
## 5076             Disney Interactive Studios     0.28     0.06     0.00
## 5077                        Electronic Arts     0.16     0.00     0.00
## 5078                             Activision     0.29     0.07     0.00
## 5079                 Microsoft Game Studios     0.28     0.08     0.00
## 5080                                  Spike     0.34     0.00     0.00
## 5081                                Ubisoft     0.33     0.02     0.00
## 5082                              LucasArts     0.14     0.15     0.00
## 5083                   Take-Two Interactive     0.30     0.04     0.00
## 5084            Sony Computer Entertainment     0.08     0.06     0.21
## 5085                                Ubisoft     0.18     0.14     0.00
## 5086                                Ubisoft     0.21     0.13     0.00
## 5087                                   Sega     0.00     0.00     0.37
## 5088                                    THQ     0.29     0.07     0.00
## 5089                                Natsume     0.18     0.14     0.00
## 5090                             Activision     0.18     0.14     0.00
## 5091                             Activision     0.34     0.00     0.00
## 5092                        Electronic Arts     0.12     0.20     0.00
## 5093                           Midway Games     0.18     0.14     0.00
## 5094                                    3DO     0.18     0.14     0.00
## 5095                        Electronic Arts     0.12     0.21     0.00
## 5096                    Human Entertainment     0.00     0.00     0.37
## 5097                 Microsoft Game Studios     0.18     0.12     0.04
## 5098                                   Sega     0.00     0.00     0.37
## 5099                             Activision     0.31     0.01     0.00
## 5100            Sony Computer Entertainment     0.00     0.00     0.35
## 5101                              Destineer     0.35     0.00     0.00
## 5102                        Electronic Arts     0.16     0.14     0.01
## 5103                             Activision     0.13     0.20     0.00
## 5104                             Activision     0.32     0.02     0.00
## 5105                        Electronic Arts     0.16     0.14     0.00
## 5106                        Electronic Arts     0.29     0.04     0.00
## 5107                             Activision     0.33     0.02     0.00
## 5108                               ChunSoft     0.00     0.00     0.32
## 5109                  Acclaim Entertainment     0.30     0.06     0.00
## 5110                                    THQ     0.30     0.06     0.00
## 5111                     Bethesda Softworks     0.14     0.18     0.00
## 5112                                 Imagic     0.35     0.02     0.00
## 5113                               Nintendo     0.29     0.07     0.00
## 5114                                Ubisoft     0.09     0.18     0.01
## 5115                   Take-Two Interactive     0.10     0.19     0.02
## 5116                            Square Enix     0.13     0.08     0.15
## 5117                            Codemasters     0.10     0.22     0.00
## 5118                               Nintendo     0.28     0.07     0.00
## 5119                     Namco Bandai Games     0.00     0.00     0.37
## 5120                      Eidos Interactive     0.27     0.07     0.01
## 5121                              505 Games     0.03     0.28     0.00
## 5122                   Take-Two Interactive     0.34     0.00     0.00
## 5123                    Knowledge Adventure     0.26     0.10     0.00
## 5124                             Activision     0.17     0.11     0.02
## 5125                             Activision     0.16     0.15     0.00
## 5126                          Vivendi Games     0.33     0.01     0.00
## 5127                                Ubisoft     0.23     0.10     0.00
## 5128                                    THQ     0.06     0.20     0.00
## 5129                            Square Enix     0.00     0.00     0.36
## 5130                            Square Enix     0.21     0.12     0.01
## 5131                                Ubisoft     0.34     0.00     0.00
## 5132                            Codemasters     0.04     0.27     0.00
## 5133                        Electronic Arts     0.34     0.00     0.00
## 5134                              Banpresto     0.00     0.00     0.37
## 5135                        Electronic Arts     0.17     0.13     0.02
## 5136                                   Sega     0.12     0.21     0.00
## 5137                            Codemasters     0.11     0.22     0.00
## 5138           Konami Digital Entertainment     0.37     0.00     0.00
## 5139                          Vivendi Games     0.32     0.02     0.00
## 5140                                  Atlus     0.00     0.00     0.37
## 5141                        Electronic Arts     0.10     0.17     0.00
## 5142 Warner Bros. Interactive Entertainment     0.17     0.15     0.00
## 5143                     Namco Bandai Games     0.09     0.07     0.18
## 5144                             Activision     0.26     0.07     0.00
## 5145                      Rising Star Games     0.16     0.13     0.04
## 5146                                   Sega     0.00     0.00     0.37
## 5147                                   Sega     0.00     0.34     0.00
## 5148                      Eidos Interactive     0.16     0.16     0.00
## 5149                            Takara Tomy     0.19     0.02     0.13
## 5150                    ASCII Entertainment     0.00     0.00     0.37
## 5151 Warner Bros. Interactive Entertainment     0.25     0.09     0.00
## 5152                                   Sega     0.15     0.16     0.00
## 5153                             Activision     0.33     0.00     0.00
## 5154                        Electronic Arts     0.30     0.01     0.00
## 5155                        Electronic Arts     0.34     0.00     0.00
## 5156 Warner Bros. Interactive Entertainment     0.16     0.18     0.00
## 5157                        Electronic Arts     0.31     0.04     0.00
## 5158                      Rising Star Games     0.16     0.12     0.06
## 5159                        Electronic Arts     0.28     0.07     0.00
## 5160                        Electronic Arts     0.09     0.21     0.00
## 5161                            Media Rings     0.00     0.00     0.36
## 5162                     Namco Bandai Games     0.08     0.06     0.21
## 5163                               Nintendo     0.30     0.03     0.00
## 5164                                    Elf     0.00     0.00     0.36
## 5165           Konami Digital Entertainment     0.18     0.14     0.00
## 5166                   Take-Two Interactive     0.11     0.22     0.00
## 5167                        Electronic Arts     0.21     0.09     0.00
## 5168           Konami Digital Entertainment     0.27     0.02     0.04
## 5169                           Game Factory     0.33     0.00     0.00
## 5170                             Activision     0.25     0.08     0.00
## 5171                         Valve Software     0.00     0.32     0.00
## 5172                              MTV Games     0.22     0.11     0.00
## 5173                               ChunSoft     0.31     0.00     0.03
## 5174                    Human Entertainment     0.00     0.00     0.36
## 5175                               Nintendo     0.17     0.10     0.07
## 5176           Konami Digital Entertainment     0.13     0.17     0.00
## 5177                     Namco Bandai Games     0.00     0.00     0.36
## 5178                                Ubisoft     0.24     0.09     0.01
## 5179                               ChunSoft     0.00     0.00     0.36
## 5180                                    3DO     0.18     0.14     0.00
## 5181                          Vivendi Games     0.18     0.14     0.00
## 5182                           Midway Games     0.18     0.14     0.00
## 5183                     Namco Bandai Games     0.00     0.00     0.36
## 5184                     Namco Bandai Games     0.12     0.02     0.21
## 5185                                  Atari     0.33     0.00     0.00
## 5186                                 Capcom     0.12     0.17     0.01
## 5187                             Tecmo Koei     0.11     0.09     0.14
## 5188                                    THQ     0.18     0.14     0.00
## 5189                     Namco Bandai Games     0.06     0.04     0.23
## 5190                             Activision     0.20     0.14     0.00
## 5191                 Microsoft Game Studios     0.18     0.15     0.00
## 5192                               Nintendo     0.26     0.10     0.00
## 5193            Sony Computer Entertainment     0.14     0.11     0.08
## 5194                     Namco Bandai Games     0.00     0.00     0.34
## 5195                                Unknown     0.26     0.10     0.00
## 5196                                  PQube     0.21     0.08     0.04
## 5197                               Nintendo     0.00     0.00     0.36
## 5198                               Starfish     0.20     0.14     0.00
## 5199            Sony Computer Entertainment     0.18     0.14     0.00
## 5200                   Take-Two Interactive     0.27     0.08     0.00
## 5201                                    THQ     0.29     0.06     0.00
## 5202                               Nintendo     0.29     0.06     0.00
## 5203                                  Ocean     0.25     0.10     0.00
## 5204           Konami Digital Entertainment     0.07     0.02     0.23
## 5205                                    THQ     0.30     0.03     0.00
## 5206             Disney Interactive Studios     0.31     0.02     0.00
## 5207                             Activision     0.20     0.14     0.00
## 5208                             Activision     0.26     0.10     0.00
## 5209                            Zushi Games     0.33     0.00     0.00
## 5210                             Activision     0.30     0.03     0.00
## 5211                 Microsoft Game Studios     0.27     0.08     0.00
## 5212                            Square Enix     0.17     0.01     0.16
## 5213                                Jorudan     0.00     0.00     0.35
## 5214                                 Laguna     0.00     0.00     0.36
## 5215                             LEGO Media     0.20     0.14     0.00
## 5216                                Ubisoft     0.17     0.13     0.00
## 5217                                   Sega     0.27     0.08     0.00
## 5218                                  Atari     0.00     0.00     0.36
## 5219                 Zoo Digital Publishing     0.18     0.14     0.00
## 5220              Destination Software, Inc     0.33     0.00     0.00
## 5221                                   Sega     0.00     0.00     0.36
## 5222                             Activision     0.24     0.08     0.00
## 5223                     Namco Bandai Games     0.00     0.00     0.36
## 5224                                Ubisoft     0.30     0.03     0.00
## 5225                               Nintendo     0.08     0.04     0.23
## 5226                   Take-Two Interactive     0.18     0.14     0.00
## 5227            Sony Computer Entertainment     0.18     0.14     0.00
## 5228           Konami Digital Entertainment     0.00     0.00     0.33
## 5229                                   Sega     0.00     0.00     0.36
## 5230                              Banpresto     0.00     0.00     0.35
## 5231                                Ubisoft     0.17     0.16     0.00
## 5232                        Electronic Arts     0.07     0.18     0.00
## 5233                                    New     0.00     0.00     0.33
## 5234                     Mattel Interactive     0.33     0.02     0.00
## 5235                        Electronic Arts     0.27     0.08     0.00
## 5236                     Namco Bandai Games     0.00     0.00     0.36
## 5237                  Acclaim Entertainment     0.20     0.13     0.00
## 5238           Konami Digital Entertainment     0.00     0.00     0.36
## 5239                           Midway Games     0.17     0.14     0.00
## 5240                   Take-Two Interactive     0.17     0.14     0.00
## 5241                                   Sega     0.00     0.00     0.36
## 5242                                Ubisoft     0.20     0.12     0.00
## 5243                        Scholastic Inc.     0.33     0.00     0.00
## 5244                              Psygnosis     0.06     0.04     0.23
## 5245                         TDK Mediactive     0.25     0.10     0.00
## 5246                   Nippon Ichi Software     0.14     0.05     0.12
## 5247                            Square Enix     0.10     0.17     0.02
## 5248            Sony Computer Entertainment     0.20     0.13     0.00
## 5249            Sony Computer Entertainment     0.13     0.17     0.00
## 5250                   Take-Two Interactive     0.33     0.00     0.00
## 5251                                  Atari     0.25     0.09     0.00
## 5252                 Zoo Digital Publishing     0.17     0.14     0.00
## 5253                               Nintendo     0.30     0.01     0.02
## 5254                                Ubisoft     0.33     0.00     0.00
## 5255                                    THQ     0.27     0.07     0.00
## 5256                             Koch Media     0.10     0.20     0.00
## 5257                            D3Publisher     0.04     0.02     0.27
## 5258 Warner Bros. Interactive Entertainment     0.12     0.20     0.00
## 5259           Konami Digital Entertainment     0.08     0.06     0.19
## 5260                               Nintendo     0.00     0.00     0.35
## 5261            Sony Computer Entertainment     0.32     0.01     0.00
## 5262                             Koch Media     0.22     0.11     0.00
## 5263                        Electronic Arts     0.21     0.12     0.00
## 5264                     Namco Bandai Games     0.00     0.00     0.35
## 5265                              Mindscape     0.00     0.32     0.00
## 5266                            Global Star     0.17     0.14     0.00
## 5267                            Hudson Soft     0.00     0.00     0.35
## 5268            Sony Computer Entertainment     0.21     0.09     0.01
## 5269                                   Sega     0.00     0.26     0.00
## 5270                             Activision     0.25     0.09     0.00
## 5271                                Ubisoft     0.17     0.13     0.00
## 5272                 Zoo Digital Publishing     0.26     0.08     0.00
## 5273                     Bethesda Softworks     0.33     0.00     0.00
## 5274                 Microsoft Game Studios     0.27     0.06     0.00
## 5275                        Electronic Arts     0.24     0.06     0.00
## 5276                                    THQ     0.07     0.24     0.00
## 5277           Konami Digital Entertainment     0.00     0.00     0.35
## 5278                                 Capcom     0.18     0.12     0.00
## 5279                             Activision     0.20     0.11     0.00
## 5280                                 Laguna     0.04     0.01     0.30
## 5281                               Nintendo     0.00     0.00     0.35
## 5282                   Take-Two Interactive     0.32     0.01     0.00
## 5283                     Virgin Interactive     0.15     0.11     0.05
## 5284                                    THQ     0.17     0.13     0.00
## 5285                                  Atlus     0.03     0.02     0.28
## 5286                            Deep Silver     0.06     0.21     0.03
## 5287                                Ubisoft     0.19     0.13     0.00
## 5288                     Namco Bandai Games     0.11     0.13     0.07
## 5289                                    THQ     0.25     0.09     0.00
## 5290                     Namco Bandai Games     0.00     0.00     0.35
## 5291                                Ubisoft     0.33     0.00     0.00
## 5292                             Tecmo Koei     0.04     0.04     0.25
## 5293                            Deep Silver     0.17     0.15     0.00
## 5294           Konami Digital Entertainment     0.00     0.00     0.29
## 5295                                    N/A     0.15     0.05     0.14
## 5296                                   Sega     0.00     0.33     0.00
## 5297                                 Capcom     0.17     0.13     0.00
## 5298                        Electronic Arts     0.14     0.15     0.00
## 5299                        Electronic Arts     0.27     0.07     0.00
## 5300                                    THQ     0.25     0.09     0.00
## 5301                        Electronic Arts     0.05     0.18     0.02
## 5302                                    THQ     0.17     0.13     0.00
## 5303                        Electronic Arts     0.23     0.09     0.00
## 5304                                    THQ     0.19     0.13     0.00
## 5305                 Microsoft Game Studios     0.26     0.08     0.00
## 5306                           Trion Worlds     0.19     0.10     0.00
## 5307 Warner Bros. Interactive Entertainment     0.13     0.18     0.00
## 5308                                Ubisoft     0.16     0.15     0.00
## 5309                   Take-Two Interactive     0.17     0.13     0.00
## 5310                             Activision     0.24     0.08     0.00
## 5311                     Namco Bandai Games     0.20     0.07     0.04
## 5312                             Activision     0.17     0.13     0.00
## 5313                      Sammy Corporation     0.09     0.07     0.16
## 5314                 Zoo Digital Publishing     0.32     0.00     0.00
## 5315                                Ubisoft     0.17     0.13     0.00
## 5316                     Namco Bandai Games     0.00     0.00     0.32
## 5317                                 Capcom     0.11     0.20     0.00
## 5318 Warner Bros. Interactive Entertainment     0.19     0.12     0.00
## 5319                    Brash Entertainment     0.17     0.13     0.00
## 5320                  Acclaim Entertainment     0.17     0.13     0.00
## 5321                        Electronic Arts     0.11     0.16     0.02
## 5322                              505 Games     0.20     0.11     0.00
## 5323                                Nobilis     0.32     0.00     0.00
## 5324                        Electronic Arts     0.27     0.07     0.00
## 5325           Konami Digital Entertainment     0.17     0.13     0.00
## 5326                          Vivendi Games     0.17     0.13     0.00
## 5327                          Kalypso Media     0.20     0.12     0.00
## 5328           Konami Digital Entertainment     0.00     0.00     0.35
## 5329                            989 Studios     0.19     0.13     0.00
## 5330                                Ubisoft     0.10     0.08     0.15
## 5331                             Activision     0.23     0.07     0.00
## 5332                        Kadokawa Shoten     0.19     0.13     0.00
## 5333                                 Capcom     0.00     0.00     0.35
## 5334                                    THQ     0.17     0.13     0.00
## 5335            Sony Computer Entertainment     0.32     0.00     0.00
## 5336                             Activision     0.27     0.07     0.00
## 5337                            Square Enix     0.06     0.25     0.00
## 5338                            Global Star     0.17     0.13     0.00
## 5339                                Ubisoft     0.03     0.26     0.00
## 5340            Sony Computer Entertainment     0.00     0.00     0.32
## 5341                 Zoo Digital Publishing     0.25     0.09     0.00
## 5342                        Electronic Arts     0.20     0.11     0.00
## 5343                        Electronic Arts     0.30     0.01     0.00
## 5344                     Namco Bandai Games     0.00     0.00     0.34
## 5345                                    THQ     0.25     0.09     0.00
## 5346             Disney Interactive Studios     0.17     0.13     0.00
## 5347             Disney Interactive Studios     0.13     0.18     0.00
## 5348                             Tecmo Koei     0.11     0.09     0.12
## 5349                             Activision     0.22     0.09     0.01
## 5350                             Activision     0.11     0.18     0.00
## 5351                     Namco Bandai Games     0.00     0.00     0.34
## 5352                              Psygnosis     0.19     0.13     0.00
## 5353                        Electronic Arts     0.08     0.23     0.00
## 5354                                    THQ     0.24     0.07     0.00
## 5355                               Nintendo     0.10     0.04     0.20
## 5356             Disney Interactive Studios     0.30     0.01     0.01
## 5357                                    THQ     0.23     0.08     0.00
## 5358                                    THQ     0.18     0.14     0.00
## 5359                      Eidos Interactive     0.14     0.15     0.00
## 5360                     Namco Bandai Games     0.19     0.11     0.01
## 5361                             Activision     0.32     0.02     0.00
## 5362                                  Atari     0.25     0.09     0.00
## 5363                             Tecmo Koei     0.08     0.06     0.19
## 5364                      Eidos Interactive     0.16     0.15     0.00
## 5365             Disney Interactive Studios     0.17     0.13     0.00
## 5366                                   Sega     0.00     0.00     0.34
## 5367                               Nintendo     0.22     0.02     0.08
## 5368            Sony Computer Entertainment     0.07     0.03     0.00
## 5369                                    THQ     0.25     0.09     0.00
## 5370                     Virgin Interactive     0.19     0.13     0.00
## 5371                  Acclaim Entertainment     0.17     0.13     0.00
## 5372                      Eidos Interactive     0.26     0.07     0.00
## 5373                            Square Enix     0.23     0.09     0.00
## 5374                      Eidos Interactive     0.17     0.13     0.00
## 5375                             Activision     0.32     0.02     0.00
## 5376                       ITT Family Games     0.32     0.02     0.00
## 5377                               Nintendo     0.07     0.14     0.11
## 5378                                    THQ     0.31     0.00     0.00
## 5379                                Ubisoft     0.11     0.17     0.00
## 5380                                    THQ     0.06     0.25     0.00
## 5381                               Nintendo     0.28     0.01     0.03
## 5382           Konami Digital Entertainment     0.28     0.04     0.00
## 5383                                    THQ     0.26     0.07     0.00
## 5384                   Take-Two Interactive     0.29     0.03     0.00
## 5385                        Electronic Arts     0.22     0.11     0.00
## 5386           20th Century Fox Video Games     0.32     0.02     0.00
## 5387                                   Sega     0.09     0.19     0.00
## 5388                     Virgin Interactive     0.00     0.00     0.34
## 5389                                Ubisoft     0.13     0.18     0.00
## 5390                                    THQ     0.31     0.00     0.00
## 5391                        Electronic Arts     0.25     0.05     0.00
## 5392                        Electronic Arts     0.29     0.02     0.00
## 5393                         GT Interactive     0.27     0.06     0.00
## 5394                 Microsoft Game Studios     0.27     0.02     0.02
## 5395           20th Century Fox Video Games     0.32     0.02     0.00
## 5396                                    THQ     0.13     0.15     0.00
## 5397                    ASCII Entertainment     0.19     0.13     0.00
## 5398                                 Coleco     0.32     0.02     0.00
## 5399                          Vivendi Games     0.17     0.13     0.00
## 5400                        Electronic Arts     0.25     0.07     0.00
## 5401                     Namco Bandai Games     0.09     0.07     0.15
## 5402                            Hudson Soft     0.00     0.00     0.34
## 5403            Sony Computer Entertainment     0.05     0.03     0.23
## 5404             Disney Interactive Studios     0.20     0.11     0.00
## 5405 Warner Bros. Interactive Entertainment     0.28     0.04     0.00
## 5406                          Vivendi Games     0.28     0.03     0.00
## 5407            Sony Computer Entertainment     0.19     0.13     0.00
## 5408           Konami Digital Entertainment     0.13     0.04     0.14
## 5409                                Ubisoft     0.22     0.09     0.00
## 5410                              505 Games     0.31     0.00     0.00
## 5411                           Midway Games     0.25     0.07     0.00
## 5412                             Activision     0.11     0.16     0.00
## 5413                        Electronic Arts     0.11     0.17     0.00
## 5414             Disney Interactive Studios     0.24     0.09     0.00
## 5415           Konami Digital Entertainment     0.26     0.07     0.00
## 5416                 Microsoft Game Studios     0.28     0.03     0.00
## 5417                                   Sega     0.00     0.33     0.00
## 5418                             Tecmo Koei     0.14     0.03     0.15
## 5419            Sony Computer Entertainment     0.13     0.15     0.01
## 5420             Disney Interactive Studios     0.10     0.02     0.00
## 5421                             Tecmo Koei     0.09     0.13     0.08
## 5422                                Nobilis     0.30     0.01     0.00
## 5423                            D3Publisher     0.28     0.00     0.03
## 5424                     Namco Bandai Games     0.04     0.03     0.25
## 5425                            Square Enix     0.14     0.01     0.16
## 5426                                Ubisoft     0.31     0.00     0.00
## 5427                        Electronic Arts     0.19     0.13     0.00
## 5428                                  Atari     0.16     0.13     0.00
## 5429                               Nintendo     0.02     0.11     0.19
## 5430                              NovaLogic     0.25     0.07     0.00
## 5431             Disney Interactive Studios     0.29     0.02     0.00
## 5432                             Activision     0.15     0.15     0.00
## 5433                     Oxygen Interactive     0.16     0.13     0.00
## 5434            Sony Computer Entertainment     0.28     0.00     0.02
## 5435                            Ackkstudios     0.00     0.00     0.33
## 5436                                Ubisoft     0.21     0.11     0.00
## 5437                                   Sega     0.14     0.16     0.00
## 5438                                 Jaleco     0.06     0.04     0.21
## 5439                        Electronic Arts     0.29     0.02     0.00
## 5440                            Square Enix     0.08     0.14     0.08
## 5441                                Ubisoft     0.16     0.13     0.00
## 5442                                    THQ     0.24     0.09     0.00
## 5443            Sony Computer Entertainment     0.06     0.04     0.22
## 5444                                Unknown     0.29     0.02     0.00
## 5445                        Electronic Arts     0.19     0.08     0.00
## 5446                                 Capcom     0.22     0.00     0.09
## 5447                             Activision     0.17     0.13     0.00
## 5448                        Electronic Arts     0.31     0.00     0.00
## 5449                            Square Enix     0.07     0.09     0.15
## 5450            Sony Computer Entertainment     0.21     0.00     0.10
## 5451                      Eidos Interactive     0.19     0.13     0.00
## 5452                     Namco Bandai Games     0.00     0.00     0.33
## 5453                  Majesco Entertainment     0.12     0.18     0.00
## 5454                        Electronic Arts     0.19     0.11     0.00
## 5455                                    THQ     0.30     0.01     0.00
## 5456            Sony Computer Entertainment     0.13     0.15     0.00
## 5457                                    THQ     0.26     0.07     0.00
## 5458                        Electronic Arts     0.26     0.07     0.00
## 5459                  Universal Interactive     0.25     0.07     0.00
## 5460                                Ubisoft     0.14     0.12     0.00
## 5461            Sony Computer Entertainment     0.12     0.10     0.08
## 5462                      Eidos Interactive     0.25     0.07     0.00
## 5463            Sony Computer Entertainment     0.16     0.13     0.00
## 5464                        Electronic Arts     0.25     0.07     0.00
## 5465                      Rising Star Games     0.23     0.06     0.01
## 5466           Konami Digital Entertainment     0.00     0.00     0.31
## 5467                                    THQ     0.26     0.07     0.00
## 5468                              LucasArts     0.15     0.14     0.00
## 5469                 Microsoft Game Studios     0.14     0.14     0.02
## 5470                           PopCap Games     0.30     0.01     0.00
## 5471 Warner Bros. Interactive Entertainment     0.16     0.11     0.00
## 5472                             Activision     0.30     0.01     0.00
## 5473                             Activision     0.16     0.13     0.00
## 5474                       City Interactive     0.05     0.18     0.03
## 5475                             Activision     0.24     0.09     0.00
## 5476                  Acclaim Entertainment     0.16     0.13     0.00
## 5477                     Namco Bandai Games     0.00     0.00     0.31
## 5478             Disney Interactive Studios     0.12     0.13     0.00
## 5479                     Namco Bandai Games     0.00     0.00     0.33
## 5480                            Hudson Soft     0.00     0.00     0.33
## 5481                                   Sega     0.12     0.18     0.00
## 5482                                 Capcom     0.27     0.01     0.02
## 5483            Sony Computer Entertainment     0.16     0.13     0.00
## 5484            Sony Computer Entertainment     0.16     0.13     0.00
## 5485                                Ubisoft     0.30     0.00     0.00
## 5486                               Nintendo     0.17     0.06     0.09
## 5487 Warner Bros. Interactive Entertainment     0.14     0.03     0.00
## 5488                        Electronic Arts     0.26     0.06     0.00
## 5489                                    THQ     0.24     0.09     0.00
## 5490                                 Capcom     0.05     0.04     0.23
## 5491                               Nintendo     0.14     0.01     0.16
## 5492                                    3DO     0.26     0.06     0.00
## 5493                               Nintendo     0.00     0.00     0.29
## 5494                                Ubisoft     0.29     0.01     0.00
## 5495                             Activision     0.26     0.04     0.00
## 5496                                   Sega     0.00     0.00     0.33
## 5497                             Activision     0.18     0.12     0.00
## 5498                             Tecmo Koei     0.09     0.07     0.15
## 5499                                 Capcom     0.10     0.08     0.12
## 5500                              Banpresto     0.00     0.00     0.33
## 5501                               Nintendo     0.19     0.02     0.09
## 5502                             Activision     0.25     0.07     0.00
## 5503                     Namco Bandai Games     0.12     0.03     0.16
## 5504                  Majesco Entertainment     0.17     0.13     0.00
## 5505                             Tecmo Koei     0.16     0.13     0.00
## 5506                 Ignition Entertainment     0.16     0.13     0.00
## 5507                                   Sega     0.12     0.13     0.06
## 5508                        Electronic Arts     0.17     0.13     0.00
## 5509                           Nordic Games     0.00     0.29     0.00
## 5510                                    THQ     0.25     0.07     0.00
## 5511            Sony Computer Entertainment     0.30     0.00     0.00
## 5512           Konami Digital Entertainment     0.00     0.00     0.31
## 5513                            Deep Silver     0.00     0.28     0.00
## 5514             Disney Interactive Studios     0.24     0.09     0.00
## 5515                                   Sega     0.00     0.00     0.33
## 5516                                 Capcom     0.26     0.00     0.03
## 5517            Sony Computer Entertainment     0.18     0.12     0.00
## 5518                                    THQ     0.24     0.09     0.00
## 5519                       Tomy Corporation     0.00     0.00     0.32
## 5520                        Electronic Arts     0.14     0.15     0.00
## 5521                     Namco Bandai Games     0.00     0.00     0.33
## 5522                        Electronic Arts     0.25     0.07     0.00
## 5523                         Rocket Company     0.00     0.00     0.33
## 5524                        Electronic Arts     0.29     0.01     0.00
## 5525                                 Takara     0.00     0.00     0.31
## 5526                   Nippon Ichi Software     0.09     0.05     0.15
## 5527                        Electronic Arts     0.16     0.11     0.04
## 5528                        Electronic Arts     0.15     0.12     0.00
## 5529                                   Sega     0.12     0.16     0.00
## 5530                             Tecmo Koei     0.00     0.00     0.33
## 5531                                    THQ     0.25     0.07     0.00
## 5532           Konami Digital Entertainment     0.29     0.02     0.00
## 5533                                    THQ     0.28     0.02     0.00
## 5534                           Parker Bros.     0.31     0.02     0.00
## 5535                                   Sega     0.09     0.07     0.14
## 5536                        Electronic Arts     0.25     0.07     0.00
## 5537                         Starpath Corp.     0.30     0.02     0.00
## 5538                               Nintendo     0.12     0.04     0.16
## 5539                            D3Publisher     0.31     0.00     0.00
## 5540                            Hudson Soft     0.27     0.04     0.00
## 5541                       Tomy Corporation     0.00     0.00     0.30
## 5542                   Take-Two Interactive     0.30     0.00     0.00
## 5543                   Take-Two Interactive     0.24     0.07     0.00
## 5544                                   Sega     0.19     0.11     0.00
## 5545                                Play It     0.16     0.12     0.00
## 5546                        Electronic Arts     0.29     0.01     0.00
## 5547            Sony Computer Entertainment     0.00     0.25     0.00
## 5548                              505 Games     0.30     0.00     0.00
## 5549                                  Atari     0.32     0.01     0.00
## 5550           Konami Digital Entertainment     0.23     0.09     0.00
## 5551                                    THQ     0.16     0.12     0.00
## 5552                               Nintendo     0.17     0.13     0.00
## 5553                       City Interactive     0.14     0.15     0.00
## 5554                     Namco Bandai Games     0.00     0.00     0.32
## 5555                                Ubisoft     0.13     0.14     0.00
## 5556                                   Sega     0.15     0.15     0.00
## 5557                          Vivendi Games     0.16     0.12     0.00
## 5558                        Electronic Arts     0.30     0.00     0.00
## 5559                        Electronic Arts     0.18     0.12     0.00
## 5560                                Ubisoft     0.12     0.16     0.00
## 5561                      Eidos Interactive     0.17     0.11     0.01
## 5562           Konami Digital Entertainment     0.22     0.01     0.08
## 5563                                Ubisoft     0.30     0.00     0.00
## 5564           Konami Digital Entertainment     0.25     0.04     0.00
## 5565                                   Sega     0.16     0.04     0.10
## 5566                                Ubisoft     0.25     0.04     0.00
## 5567                                   Sega     0.13     0.14     0.00
## 5568                        Electronic Arts     0.13     0.15     0.00
## 5569                  Acclaim Entertainment     0.30     0.02     0.00
## 5570                            Hudson Soft     0.00     0.00     0.32
## 5571                                    THQ     0.18     0.11     0.00
## 5572                              Zoo Games     0.30     0.00     0.00
## 5573            Sony Computer Entertainment     0.16     0.12     0.00
## 5574                                Ubisoft     0.20     0.10     0.00
## 5575                        Electronic Arts     0.28     0.03     0.00
## 5576                  Acclaim Entertainment     0.18     0.12     0.00
## 5577                       Enix Corporation     0.00     0.00     0.30
## 5578                             Activision     0.25     0.05     0.00
## 5579                                 Capcom     0.10     0.17     0.00
## 5580           Konami Digital Entertainment     0.22     0.08     0.00
## 5581                        Electronic Arts     0.05     0.04     0.21
## 5582                                 Capcom     0.11     0.08     0.10
## 5583            Sony Computer Entertainment     0.18     0.12     0.00
## 5584                     Namco Bandai Games     0.18     0.11     0.00
## 5585                                  Atari     0.19     0.04     0.08
## 5586                                Ubisoft     0.11     0.07     0.12
## 5587                         Ubisoft Annecy     0.19     0.08     0.03
## 5588                                  Atari     0.00     0.00     0.32
## 5589                                Unknown     0.08     0.06     0.15
## 5590                     Namco Bandai Games     0.00     0.00     0.32
## 5591                            Codemasters     0.15     0.14     0.00
## 5592                        Electronic Arts     0.30     0.00     0.00
## 5593           Konami Digital Entertainment     0.30     0.00     0.00
## 5594                   Take-Two Interactive     0.16     0.12     0.00
## 5595                      Eidos Interactive     0.00     0.28     0.00
## 5596                                    THQ     0.11     0.13     0.00
## 5597                                Ubisoft     0.16     0.12     0.00
## 5598                             Activision     0.28     0.01     0.00
## 5599                     Namco Bandai Games     0.14     0.02     0.15
## 5600                            D3Publisher     0.22     0.08     0.00
## 5601                      Eidos Interactive     0.21     0.09     0.00
## 5602                        SouthPeak Games     0.27     0.03     0.00
## 5603                                Ubisoft     0.25     0.06     0.00
## 5604                        Electronic Arts     0.14     0.13     0.00
## 5605            Sony Computer Entertainment     0.16     0.12     0.00
## 5606           Konami Digital Entertainment     0.15     0.04     0.13
## 5607                                Ubisoft     0.18     0.12     0.00
## 5608                                Ubisoft     0.23     0.05     0.00
## 5609                               Nintendo     0.00     0.00     0.32
## 5610                             Activision     0.13     0.16     0.00
## 5611                                   Sega     0.08     0.05     0.16
## 5612                                   Sega     0.21     0.01     0.08
## 5613                        Electronic Arts     0.08     0.18     0.00
## 5614                  Majesco Entertainment     0.23     0.08     0.00
## 5615             Disney Interactive Studios     0.17     0.12     0.00
## 5616                        Electronic Arts     0.18     0.12     0.00
## 5617                            Codemasters     0.06     0.14     0.07
## 5618                     Namco Bandai Games     0.27     0.02     0.00
## 5619           Konami Digital Entertainment     0.30     0.00     0.00
## 5620            Sony Computer Entertainment     0.09     0.15     0.00
## 5621            Sony Computer Entertainment     0.18     0.12     0.00
## 5622           Konami Digital Entertainment     0.16     0.12     0.00
## 5623           Konami Digital Entertainment     0.15     0.10     0.03
## 5624                        Electronic Arts     0.18     0.12     0.00
## 5625                                Unknown     0.24     0.05     0.00
## 5626           Konami Digital Entertainment     0.16     0.12     0.00
## 5627                                Ubisoft     0.12     0.14     0.00
## 5628                        Electronic Arts     0.12     0.13     0.00
## 5629                    ASCII Entertainment     0.00     0.00     0.32
## 5630                     Virgin Interactive     0.00     0.00     0.32
## 5631                   Nippon Ichi Software     0.09     0.04     0.15
## 5632                   Take-Two Interactive     0.14     0.15     0.00
## 5633           Konami Digital Entertainment     0.00     0.00     0.30
## 5634                                    N/A     0.23     0.08     0.00
## 5635                                Ubisoft     0.16     0.12     0.00
## 5636                             Activision     0.30     0.00     0.00
## 5637                                    THQ     0.23     0.08     0.00
## 5638                                    BPS     0.00     0.00     0.32
## 5639                             Activision     0.16     0.12     0.00
## 5640                              MTV Games     0.16     0.12     0.00
## 5641                   Take-Two Interactive     0.27     0.03     0.00
## 5642                     BAM! Entertainment     0.23     0.08     0.00
## 5643                             Activision     0.30     0.02     0.00
## 5644                               Data Age     0.30     0.02     0.00
## 5645                                Ubisoft     0.26     0.03     0.00
## 5646                  Acclaim Entertainment     0.18     0.12     0.00
## 5647            Sony Computer Entertainment     0.20     0.04     0.05
## 5648                             Enterbrain     0.00     0.00     0.32
## 5649                            Square Enix     0.09     0.16     0.02
## 5650                   Take-Two Interactive     0.14     0.13     0.00
## 5651                                   Sega     0.24     0.07     0.00
## 5652                            Square Enix     0.00     0.00     0.32
## 5653                            Hudson Soft     0.00     0.00     0.32
## 5654                     Namco Bandai Games     0.00     0.00     0.32
## 5655                                  Atari     0.23     0.08     0.00
## 5656                                Unknown     0.16     0.12     0.00
## 5657                    Human Entertainment     0.00     0.00     0.30
## 5658                              Banpresto     0.00     0.00     0.30
## 5659                             SquareSoft     0.00     0.00     0.32
## 5660                 Microsoft Game Studios     0.24     0.07     0.00
## 5661                        Electronic Arts     0.23     0.08     0.00
## 5662                 Zoo Digital Publishing     0.30     0.00     0.00
## 5663                        Electronic Arts     0.14     0.14     0.00
## 5664                             Activision     0.28     0.01     0.00
## 5665                        Electronic Arts     0.03     0.00     0.00
## 5666                                  Atari     0.23     0.04     0.02
## 5667                        Electronic Arts     0.29     0.00     0.00
## 5668                                    THQ     0.18     0.11     0.00
## 5669                     Namco Bandai Games     0.26     0.04     0.00
## 5670                            Deep Silver     0.24     0.07     0.00
## 5671                Gathering of Developers     0.16     0.12     0.00
## 5672                            Codemasters     0.28     0.01     0.00
## 5673                            Square Enix     0.18     0.11     0.00
## 5674                            Hudson Soft     0.00     0.00     0.32
## 5675                                    THQ     0.18     0.12     0.00
## 5676                             Tecmo Koei     0.08     0.06     0.16
## 5677                        Scholastic Inc.     0.29     0.00     0.00
## 5678                 Microsoft Game Studios     0.10     0.17     0.00
## 5679                        Electronic Arts     0.29     0.00     0.00
## 5680            Sony Computer Entertainment     0.15     0.12     0.00
## 5681                             Activision     0.10     0.02     0.00
## 5682                            Square Enix     0.07     0.04     0.17
## 5683             Disney Interactive Studios     0.15     0.11     0.00
## 5684           Konami Digital Entertainment     0.00     0.00     0.32
## 5685                     Namco Bandai Games     0.15     0.03     0.10
## 5686                            Zushi Games     0.29     0.00     0.00
## 5687                             Tecmo Koei     0.00     0.00     0.32
## 5688                 Microsoft Game Studios     0.22     0.08     0.00
## 5689                          Vivendi Games     0.27     0.02     0.00
## 5690 Warner Bros. Interactive Entertainment     0.18     0.11     0.00
## 5691                             Activision     0.22     0.06     0.00
## 5692                                  Ocean     0.18     0.12     0.00
## 5693                              505 Games     0.00     0.24     0.00
## 5694                                   Sega     0.00     0.00     0.32
## 5695                            Codemasters     0.06     0.19     0.00
## 5696                            Codemasters     0.11     0.15     0.00
## 5697                        Electronic Arts     0.18     0.12     0.00
## 5698                             Activision     0.08     0.15     0.00
## 5699                                 Capcom     0.00     0.00     0.31
## 5700                                  PQube     0.23     0.04     0.02
## 5701            Sony Computer Entertainment     0.29     0.00     0.00
## 5702                          Vivendi Games     0.24     0.07     0.00
## 5703                                  Atlus     0.12     0.00     0.19
## 5704 Warner Bros. Interactive Entertainment     0.13     0.16     0.00
## 5705            Sony Computer Entertainment     0.17     0.12     0.00
## 5706                        Electronic Arts     0.17     0.11     0.00
## 5707           Konami Digital Entertainment     0.00     0.00     0.31
## 5708           Konami Digital Entertainment     0.29     0.00     0.00
## 5709                        Electronic Arts     0.22     0.08     0.00
## 5710           Konami Digital Entertainment     0.00     0.00     0.31
## 5711           Konami Digital Entertainment     0.00     0.00     0.31
## 5712                               Nintendo     0.00     0.00     0.31
## 5713                     Namco Bandai Games     0.12     0.00     0.18
## 5714                               NewKidCo     0.17     0.12     0.00
## 5715                   Take-Two Interactive     0.29     0.00     0.00
## 5716                 Microsoft Game Studios     0.23     0.07     0.00
## 5717                        Electronic Arts     0.15     0.12     0.00
## 5718                      Eidos Interactive     0.27     0.02     0.00
## 5719                  Marvelous Interactive     0.18     0.01     0.10
## 5720                            Square Enix     0.10     0.00     0.19
## 5721                            Deep Silver     0.20     0.06     0.03
## 5722                     Namco Bandai Games     0.05     0.05     0.20
## 5723            Sony Computer Entertainment     0.15     0.12     0.00
## 5724                             Infogrames     0.17     0.12     0.00
## 5725           Konami Digital Entertainment     0.23     0.07     0.00
## 5726                              Avanquest     0.11     0.16     0.00
## 5727                                  Atari     0.23     0.07     0.00
## 5728                                  Atari     0.27     0.01     0.01
## 5729                            Square Enix     0.08     0.15     0.06
## 5730                           Midway Games     0.23     0.07     0.00
## 5731 Warner Bros. Interactive Entertainment     0.19     0.09     0.00
## 5732                     Namco Bandai Games     0.00     0.00     0.31
## 5733                             Ghostlight     0.16     0.01     0.12
## 5734                             SquareSoft     0.10     0.07     0.13
## 5735            Sony Computer Entertainment     0.17     0.12     0.00
## 5736                                   Sega     0.19     0.09     0.00
## 5737                            Deep Silver     0.15     0.13     0.00
## 5738                                Ubisoft     0.00     0.27     0.00
## 5739            Sony Computer Entertainment     0.13     0.12     0.00
## 5740                          Vivendi Games     0.16     0.12     0.00
## 5741                       Storm City Games     0.29     0.00     0.00
## 5742                                 Agetec     0.07     0.06     0.16
## 5743                     Namco Bandai Games     0.00     0.00     0.31
## 5744                      CokeM Interactive     0.29     0.00     0.00
## 5745                            Codemasters     0.09     0.18     0.00
## 5746                                   Sega     0.00     0.00     0.31
## 5747                          Kalypso Media     0.06     0.16     0.06
## 5748                   Take-Two Interactive     0.17     0.12     0.00
## 5749                                Ubisoft     0.23     0.07     0.00
## 5750 Warner Bros. Interactive Entertainment     0.18     0.10     0.00
## 5751                                    THQ     0.22     0.08     0.00
## 5752                              Banpresto     0.00     0.00     0.29
## 5753                               P2 Games     0.00     0.27     0.00
## 5754                             Activision     0.17     0.08     0.00
## 5755                             Rondomedia     0.13     0.15     0.00
## 5756                                  Atari     0.27     0.02     0.00
## 5757                                 Capcom     0.19     0.09     0.00
## 5758                                Ubisoft     0.00     0.29     0.00
## 5759           Konami Digital Entertainment     0.06     0.02     0.13
## 5760                        Electronic Arts     0.25     0.06     0.00
## 5761                             Activision     0.25     0.06     0.00
## 5762                   Take-Two Interactive     0.25     0.06     0.00
## 5763                               Nintendo     0.00     0.00     0.26
## 5764           Konami Digital Entertainment     0.00     0.00     0.26
## 5765                           Midway Games     0.27     0.01     0.00
## 5766                   Take-Two Interactive     0.04     0.17     0.00
## 5767                                 Capcom     0.27     0.01     0.00
## 5768           Konami Digital Entertainment     0.00     0.00     0.31
## 5769                             Activision     0.28     0.01     0.00
## 5770                             Activision     0.23     0.07     0.00
## 5771                     Namco Bandai Games     0.09     0.15     0.01
## 5772                                Ubisoft     0.22     0.08     0.00
## 5773                     Bethesda Softworks     0.28     0.00     0.00
## 5774                               Nintendo     0.11     0.10     0.08
## 5775                        CBS Electronics     0.29     0.02     0.00
## 5776            Sony Computer Entertainment     0.15     0.12     0.00
## 5777                        Electronic Arts     0.28     0.00     0.00
## 5778                                Ubisoft     0.15     0.12     0.00
## 5779                        Electronic Arts     0.14     0.13     0.00
## 5780                        Electronic Arts     0.28     0.00     0.00
## 5781                                  Atlus     0.00     0.00     0.31
## 5782                        Electronic Arts     0.20     0.08     0.00
## 5783           Home Entertainment Suppliers     0.09     0.19     0.00
## 5784                             Infogrames     0.17     0.12     0.00
## 5785                           Midway Games     0.24     0.05     0.00
## 5786                             SquareSoft     0.00     0.00     0.29
## 5787                                   Sega     0.28     0.01     0.00
## 5788                        Electronic Arts     0.24     0.06     0.00
## 5789                     Namco Bandai Games     0.00     0.00     0.31
## 5790                                  Atlus     0.13     0.02     0.14
## 5791                                 Capcom     0.17     0.01     0.11
## 5792            Sony Computer Entertainment     0.00     0.28     0.00
## 5793            Sony Computer Entertainment     0.17     0.12     0.00
## 5794           Konami Digital Entertainment     0.08     0.20     0.00
## 5795                              LucasArts     0.15     0.12     0.00
## 5796           Konami Digital Entertainment     0.18     0.01     0.09
## 5797            Sony Computer Entertainment     0.15     0.12     0.00
## 5798                  Acclaim Entertainment     0.17     0.12     0.00
## 5799                       Activision Value     0.28     0.00     0.00
## 5800                                  Magix     0.15     0.12     0.00
## 5801                                  Atari     0.29     0.02     0.00
## 5802           Konami Digital Entertainment     0.00     0.00     0.31
## 5803                             Activision     0.28     0.00     0.00
## 5804                     Mattel Interactive     0.29     0.02     0.00
## 5805                         GT Interactive     0.17     0.12     0.00
## 5806                             Activision     0.15     0.12     0.00
## 5807                              Zoo Games     0.28     0.00     0.00
## 5808                     Mentor Interactive     0.29     0.00     0.00
## 5809             Disney Interactive Studios     0.24     0.05     0.00
## 5810                             Activision     0.17     0.12     0.00
## 5811                                Ubisoft     0.28     0.00     0.00
## 5812                  Universal Interactive     0.23     0.07     0.00
## 5813                     Empire Interactive     0.17     0.12     0.00
## 5814                               Nintendo     0.00     0.00     0.30
## 5815            Sony Computer Entertainment     0.17     0.12     0.00
## 5816                     Namco Bandai Games     0.10     0.10     0.06
## 5817                                 Capcom     0.12     0.13     0.00
## 5818            Sony Computer Entertainment     0.15     0.12     0.00
## 5819                    ASCII Entertainment     0.00     0.00     0.31
## 5820                     Namco Bandai Games     0.00     0.00     0.31
## 5821                             Activision     0.15     0.12     0.00
## 5822                        Electronic Arts     0.28     0.00     0.00
## 5823                                Ubisoft     0.25     0.03     0.00
## 5824                             Activision     0.22     0.08     0.00
## 5825                 Microsoft Game Studios     0.23     0.07     0.00
## 5826                         TDK Mediactive     0.22     0.08     0.00
## 5827                               Nintendo     0.00     0.00     0.30
## 5828           Konami Digital Entertainment     0.28     0.00     0.01
## 5829                                   Sega     0.00     0.00     0.30
## 5830                             SquareSoft     0.17     0.12     0.00
## 5831                                   Sega     0.00     0.00     0.30
## 5832                  Universal Interactive     0.22     0.08     0.00
## 5833                             Activision     0.21     0.05     0.00
## 5834                                    3DO     0.17     0.12     0.00
## 5835                             Activision     0.29     0.00     0.00
## 5836                       Arc System Works     0.14     0.00     0.14
## 5837                     Namco Bandai Games     0.00     0.00     0.30
## 5838                     Namco Bandai Games     0.30     0.00     0.00
## 5839                        Electronic Arts     0.14     0.13     0.00
## 5840            Sony Computer Entertainment     0.05     0.03     0.21
## 5841                               Nintendo     0.08     0.13     0.08
## 5842           Konami Digital Entertainment     0.15     0.12     0.00
## 5843                  Acclaim Entertainment     0.23     0.06     0.00
## 5844             Disney Interactive Studios     0.22     0.08     0.00
## 5845                                 Capcom     0.15     0.12     0.00
## 5846                                   Sega     0.00     0.00     0.30
## 5847                            Global Star     0.22     0.08     0.00
## 5848            Sony Computer Entertainment     0.15     0.12     0.00
## 5849                                   Sega     0.00     0.00     0.30
## 5850                     Namco Bandai Games     0.21     0.07     0.00
## 5851                               Nintendo     0.00     0.00     0.30
## 5852                              Banpresto     0.00     0.00     0.30
## 5853            Sony Computer Entertainment     0.17     0.11     0.00
## 5854                             Activision     0.18     0.10     0.00
## 5855 Warner Bros. Interactive Entertainment     0.25     0.00     0.00
## 5856             Disney Interactive Studios     0.12     0.12     0.00
## 5857            Sony Computer Entertainment     0.15     0.12     0.00
## 5858                                Unknown     0.17     0.11     0.00
## 5859                     Namco Bandai Games     0.00     0.00     0.30
## 5860                             Activision     0.25     0.03     0.00
## 5861                      Rising Star Games     0.17     0.06     0.04
## 5862                              505 Games     0.16     0.12     0.00
## 5863                              Banpresto     0.00     0.00     0.30
## 5864 Warner Bros. Interactive Entertainment     0.05     0.19     0.00
## 5865                                   Sega     0.00     0.00     0.30
## 5866                                Ubisoft     0.14     0.07     0.07
## 5867                              Banpresto     0.13     0.07     0.07
## 5868 Warner Bros. Interactive Entertainment     0.28     0.00     0.00
## 5869                                  Atlus     0.13     0.03     0.11
## 5870                             Tecmo Koei     0.05     0.04     0.19
## 5871                               Nintendo     0.00     0.00     0.30
## 5872                            Hudson Soft     0.00     0.00     0.30
## 5873        Midas Interactive Entertainment     0.15     0.11     0.00
## 5874                            Codemasters     0.01     0.27     0.00
## 5875                                Unknown     0.28     0.00     0.00
## 5876                             Activision     0.24     0.06     0.00
## 5877                   Take-Two Interactive     0.24     0.06     0.00
## 5878                                    THQ     0.21     0.08     0.00
## 5879                                  Spike     0.00     0.00     0.30
## 5880                            Square Enix     0.26     0.00     0.02
## 5881                                Ubisoft     0.18     0.09     0.00
## 5882             Disney Interactive Studios     0.27     0.00     0.00
## 5883                     Namco Bandai Games     0.00     0.00     0.28
## 5884                                Ubisoft     0.15     0.11     0.00
## 5885                                  Atari     0.21     0.08     0.00
## 5886                            Hudson Soft     0.00     0.00     0.30
## 5887                     Namco Bandai Games     0.00     0.00     0.30
## 5888                        Electronic Arts     0.28     0.00     0.00
## 5889                                    3DO     0.17     0.11     0.00
## 5890                        Electronic Arts     0.23     0.06     0.00
## 5891                           Midway Games     0.24     0.02     0.00
## 5892                                    THQ     0.15     0.11     0.00
## 5893                                Ubisoft     0.10     0.07     0.10
## 5894                                   Sega     0.00     0.00     0.30
## 5895                             Tecmo Koei     0.09     0.11     0.06
## 5896                                 Capcom     0.16     0.04     0.08
## 5897                             Tecmo Koei     0.15     0.06     0.06
## 5898           Konami Digital Entertainment     0.09     0.13     0.01
## 5899                            Square Enix     0.00     0.00     0.30
## 5900                             Tecmo Koei     0.00     0.00     0.30
## 5901                     Virgin Interactive     0.07     0.05     0.15
## 5902           Konami Digital Entertainment     0.28     0.00     0.00
## 5903                  Acclaim Entertainment     0.15     0.11     0.00
## 5904                     Namco Bandai Games     0.00     0.00     0.30
## 5905                                Ubisoft     0.27     0.01     0.00
## 5906                            Hudson Soft     0.00     0.00     0.30
## 5907                                    THQ     0.15     0.11     0.00
## 5908                     Namco Bandai Games     0.00     0.00     0.30
## 5909                        Electronic Arts     0.02     0.01     0.00
## 5910                      Eidos Interactive     0.27     0.00     0.00
## 5911           Konami Digital Entertainment     0.00     0.00     0.29
## 5912           Konami Digital Entertainment     0.00     0.00     0.30
## 5913                                    THQ     0.21     0.08     0.00
## 5914                                    THQ     0.21     0.08     0.00
## 5915             Disney Interactive Studios     0.17     0.09     0.00
## 5916                        Electronic Arts     0.16     0.11     0.00
## 5917                        Electronic Arts     0.15     0.12     0.00
## 5918                                Jorudan     0.00     0.00     0.30
## 5919                             Tecmo Koei     0.00     0.00     0.30
## 5920                             Activision     0.23     0.06     0.00
## 5921                           Midway Games     0.14     0.11     0.00
## 5922                             Activision     0.26     0.02     0.00
## 5923                             Activision     0.22     0.05     0.00
## 5924           Konami Digital Entertainment     0.22     0.06     0.00
## 5925                                 Capcom     0.27     0.00     0.00
## 5926                            Deep Silver     0.00     0.25     0.00
## 5927 Warner Bros. Interactive Entertainment     0.14     0.13     0.00
## 5928            Sony Computer Entertainment     0.14     0.12     0.00
## 5929                             Activision     0.01     0.23     0.00
## 5930                   Mud Duck Productions     0.22     0.06     0.00
## 5931                 Microsoft Game Studios     0.20     0.02     0.05
## 5932                                    THQ     0.23     0.06     0.00
## 5933                             Activision     0.26     0.01     0.00
## 5934                                  Atlus     0.19     0.00     0.09
## 5935            Sony Computer Entertainment     0.14     0.11     0.00
## 5936                                  Atari     0.28     0.02     0.00
## 5937                                Ubisoft     0.27     0.00     0.00
## 5938                        Electronic Arts     0.24     0.03     0.00
## 5939                                Ubisoft     0.14     0.11     0.00
## 5940                                Ubisoft     0.24     0.03     0.00
## 5941                             Activision     0.26     0.01     0.00
## 5942                             Activision     0.16     0.10     0.00
## 5943                             Activision     0.19     0.07     0.00
## 5944 Warner Bros. Interactive Entertainment     0.23     0.04     0.00
## 5945                        Electronic Arts     0.02     0.24     0.00
## 5946             Disney Interactive Studios     0.24     0.03     0.00
## 5947                        Electronic Arts     0.21     0.08     0.00
## 5948           Konami Digital Entertainment     0.25     0.02     0.00
## 5949           Konami Digital Entertainment     0.00     0.00     0.29
## 5950                                   Sega     0.00     0.00     0.29
## 5951                         TDK Mediactive     0.22     0.06     0.00
## 5952           Konami Digital Entertainment     0.16     0.11     0.00
## 5953                        Electronic Arts     0.16     0.10     0.00
## 5954                      Eidos Interactive     0.12     0.14     0.00
## 5955                              505 Games     0.02     0.02     0.25
## 5956             Disney Interactive Studios     0.17     0.10     0.00
## 5957 Warner Bros. Interactive Entertainment     0.04     0.19     0.00
## 5958                                   Sega     0.00     0.00     0.29
## 5959                            D3Publisher     0.11     0.03     0.00
## 5960                        Electronic Arts     0.23     0.06     0.00
## 5961                                    THQ     0.27     0.00     0.00
## 5962        Midas Interactive Entertainment     0.14     0.11     0.00
## 5963                     Virgin Interactive     0.03     0.02     0.22
## 5964            Sony Computer Entertainment     0.26     0.01     0.00
## 5965           Konami Digital Entertainment     0.00     0.00     0.27
## 5966            Sony Computer Entertainment     0.05     0.16     0.00
## 5967                               Nintendo     0.19     0.00     0.08
## 5968                                Ubisoft     0.15     0.11     0.00
## 5969                                    THQ     0.20     0.07     0.00
## 5970            Sony Computer Entertainment     0.15     0.09     0.00
## 5971                        Electronic Arts     0.27     0.00     0.00
## 5972                     Namco Bandai Games     0.10     0.16     0.00
## 5973                                   Sega     0.00     0.00     0.29
## 5974                        Electronic Arts     0.02     0.23     0.00
## 5975                     Hasbro Interactive     0.16     0.11     0.00
## 5976                     Namco Bandai Games     0.00     0.00     0.27
## 5977            Sony Computer Entertainment     0.13     0.10     0.03
## 5978                            Square Enix     0.09     0.06     0.11
## 5979                                 Capcom     0.17     0.08     0.00
## 5980                      Rising Star Games     0.14     0.10     0.02
## 5981                             Tecmo Koei     0.14     0.11     0.00
## 5982                       Enix Corporation     0.00     0.00     0.29
## 5983                             Tecmo Koei     0.11     0.07     0.07
## 5984                     Namco Bandai Games     0.00     0.00     0.28
## 5985                  Majesco Entertainment     0.27     0.00     0.00
## 5986                             Activision     0.27     0.02     0.00
## 5987                            Square Enix     0.13     0.10     0.04
## 5988                                    THQ     0.24     0.03     0.00
## 5989                           Midway Games     0.22     0.06     0.00
## 5990                             Activision     0.14     0.11     0.00
## 5991           Konami Digital Entertainment     0.00     0.22     0.04
## 5992                                Jorudan     0.00     0.00     0.28
## 5993                                Ubisoft     0.27     0.00     0.00
## 5994 Warner Bros. Interactive Entertainment     0.14     0.10     0.01
## 5995                                 Capcom     0.14     0.11     0.00
## 5996                                  Atari     0.16     0.10     0.00
## 5997                   Take-Two Interactive     0.14     0.11     0.00
## 5998                                Unknown     0.27     0.02     0.00
## 5999 Warner Bros. Interactive Entertainment     0.10     0.16     0.00
## 6000                     Empire Interactive     0.13     0.10     0.00
## 6001           Konami Digital Entertainment     0.00     0.00     0.29
## 6002                  Acclaim Entertainment     0.23     0.06     0.00
## 6003                        Electronic Arts     0.23     0.06     0.00
## 6004                           Midway Games     0.23     0.06     0.00
## 6005                  Acclaim Entertainment     0.23     0.06     0.00
## 6006                                  Kemco     0.23     0.06     0.00
## 6007                               Nintendo     0.23     0.06     0.00
## 6008                               Nintendo     0.22     0.05     0.02
## 6009                                  Titus     0.23     0.06     0.00
## 6010                        Electronic Arts     0.25     0.02     0.00
## 6011                                  Atari     0.21     0.08     0.00
## 6012                                    THQ     0.14     0.11     0.00
## 6013                                Ubisoft     0.23     0.03     0.00
## 6014                      Rising Star Games     0.23     0.03     0.00
## 6015                                 Capcom     0.06     0.05     0.16
## 6016                            Codemasters     0.14     0.11     0.00
## 6017                                Ubisoft     0.24     0.02     0.00
## 6018                        Electronic Arts     0.22     0.06     0.00
## 6019                               Nintendo     0.15     0.01     0.12
## 6020                             Activision     0.25     0.01     0.00
## 6021                                Unknown     0.22     0.06     0.00
## 6022                               Nintendo     0.00     0.00     0.29
## 6023                Marvelous Entertainment     0.08     0.02     0.16
## 6024                   Take-Two Interactive     0.11     0.15     0.00
## 6025                        Electronic Arts     0.22     0.06     0.00
## 6026                                 Takara     0.00     0.00     0.27
## 6027                               Nintendo     0.22     0.04     0.01
## 6028            Sony Computer Entertainment     0.18     0.05     0.03
## 6029                                Ubisoft     0.22     0.06     0.00
## 6030                        Electronic Arts     0.06     0.20     0.00
## 6031                     Namco Bandai Games     0.06     0.05     0.15
## 6032                                    THQ     0.22     0.06     0.00
## 6033            Sony Computer Entertainment     0.16     0.11     0.00
## 6034                   Take-Two Interactive     0.26     0.01     0.00
## 6035                             Activision     0.18     0.09     0.00
## 6036                            Codemasters     0.23     0.04     0.00
## 6037                          Angel Studios     0.00     0.00     0.29
## 6038           Konami Digital Entertainment     0.23     0.04     0.00
## 6039                                   Sega     0.17     0.09     0.00
## 6040                         TDK Mediactive     0.14     0.11     0.00
## 6041           Konami Digital Entertainment     0.23     0.00     0.04
## 6042                              Avanquest     0.02     0.25     0.00
## 6043                                   Sega     0.00     0.00     0.29
## 6044                                   Sega     0.07     0.05     0.15
## 6045                             Tecmo Koei     0.06     0.05     0.16
## 6046                                Ubisoft     0.12     0.12     0.00
## 6047        Midas Interactive Entertainment     0.16     0.11     0.00
## 6048 Warner Bros. Interactive Entertainment     0.27     0.00     0.00
## 6049                             Activision     0.10     0.14     0.00
## 6050           Konami Digital Entertainment     0.15     0.11     0.00
## 6051                        Electronic Arts     0.01     0.24     0.00
## 6052                             Activision     0.13     0.13     0.00
## 6053                            D3Publisher     0.26     0.00     0.00
## 6054                     Namco Bandai Games     0.00     0.00     0.29
## 6055                     Namco Bandai Games     0.00     0.10     0.17
## 6056                                Ubisoft     0.14     0.11     0.00
## 6057                             Infogrames     0.16     0.11     0.00
## 6058                   Nippon Ichi Software     0.11     0.08     0.06
## 6059                            Square Enix     0.00     0.00     0.29
## 6060            Sony Computer Entertainment     0.03     0.02     0.21
## 6061                                 Capcom     0.06     0.01     0.20
## 6062                                Ubisoft     0.14     0.11     0.00
## 6063           Konami Digital Entertainment     0.00     0.00     0.29
## 6064                             Tecmo Koei     0.06     0.00     0.22
## 6065                                   Sega     0.17     0.00     0.10
## 6066                           Midway Games     0.14     0.11     0.00
## 6067            Sony Computer Entertainment     0.16     0.11     0.00
## 6068                            Square Enix     0.00     0.00     0.29
## 6069                                 Capcom     0.26     0.00     0.00
## 6070           Konami Digital Entertainment     0.00     0.00     0.27
## 6071                             Tecmo Koei     0.00     0.00     0.29
## 6072           Konami Digital Entertainment     0.00     0.00     0.29
## 6073                                   Sega     0.12     0.14     0.00
## 6074                                 Capcom     0.15     0.07     0.05
## 6075                            Deep Silver     0.26     0.00     0.00
## 6076                          Vivendi Games     0.22     0.06     0.00
## 6077                        Electronic Arts     0.26     0.00     0.00
## 6078                               Nintendo     0.00     0.00     0.29
## 6079                          Wargaming.net     0.00     0.23     0.00
## 6080                 Microsoft Game Studios     0.21     0.06     0.00
## 6081                        Electronic Arts     0.16     0.11     0.00
## 6082                     Namco Bandai Games     0.09     0.13     0.01
## 6083                                Ubisoft     0.17     0.09     0.00
## 6084                              Interplay     0.20     0.08     0.00
## 6085                               Nintendo     0.08     0.03     0.17
## 6086                                    THQ     0.26     0.00     0.00
## 6087                            Square Enix     0.00     0.00     0.28
## 6088                                Ubisoft     0.14     0.11     0.00
## 6089            Sony Computer Entertainment     0.14     0.11     0.00
## 6090                              Playmates     0.16     0.11     0.00
## 6091            Sony Computer Entertainment     0.00     0.00     0.28
## 6092                  Marvelous Interactive     0.28     0.00     0.00
## 6093                             Activision     0.20     0.08     0.00
## 6094                                  Atari     0.20     0.08     0.00
## 6095                    Human Entertainment     0.00     0.00     0.28
## 6096                        Electronic Arts     0.17     0.09     0.00
## 6097           Konami Digital Entertainment     0.00     0.00     0.28
## 6098                                Ubisoft     0.16     0.11     0.00
## 6099                        Electronic Arts     0.00     0.27     0.00
## 6100                   Take-Two Interactive     0.21     0.06     0.00
## 6101                           Midway Games     0.09     0.07     0.10
## 6102                                  Atari     0.24     0.03     0.00
## 6103                           Midway Games     0.14     0.11     0.00
## 6104                             Activision     0.21     0.06     0.00
## 6105           Konami Digital Entertainment     0.20     0.08     0.00
## 6106                             Activision     0.20     0.08     0.00
## 6107                     Namco Bandai Games     0.14     0.11     0.00
## 6108                     Namco Bandai Games     0.00     0.00     0.28
## 6109                              Avanquest     0.00     0.25     0.00
## 6110                                   Sega     0.14     0.10     0.00
## 6111                  Acclaim Entertainment     0.22     0.06     0.00
## 6112                     Namco Bandai Games     0.00     0.00     0.28
## 6113                                   Sega     0.08     0.00     0.19
## 6114                             Activision     0.20     0.08     0.00
## 6115                 Focus Home Interactive     0.10     0.12     0.02
## 6116                        Electronic Arts     0.21     0.06     0.00
## 6117                           SNK Playmore     0.00     0.00     0.28
## 6118                  Majesco Entertainment     0.20     0.08     0.00
## 6119                               Nintendo     0.00     0.00     0.28
## 6120 Warner Bros. Interactive Entertainment     0.09     0.13     0.00
## 6121                            Tigervision     0.26     0.02     0.00
## 6122                                    THQ     0.26     0.00     0.00
## 6123                                 Capcom     0.14     0.11     0.00
## 6124                        Electronic Arts     0.27     0.01     0.00
## 6125                      Rising Star Games     0.15     0.06     0.05
## 6126                                    THQ     0.26     0.01     0.00
## 6127                 Microsoft Game Studios     0.18     0.08     0.00
## 6128                           Game Factory     0.26     0.00     0.00
## 6129                    Hamster Corporation     0.16     0.11     0.00
## 6130                                    GSP     0.04     0.20     0.00
## 6131                             Tecmo Koei     0.10     0.03     0.14
## 6132           Konami Digital Entertainment     0.13     0.12     0.00
## 6133                                   Sega     0.24     0.00     0.01
## 6134                        Electronic Arts     0.14     0.11     0.00
## 6135                           Midway Games     0.22     0.05     0.00
## 6136                 Microsoft Game Studios     0.21     0.06     0.00
## 6137                               Nintendo     0.00     0.00     0.28
## 6138                            Zushi Games     0.25     0.01     0.00
## 6139                             Activision     0.25     0.01     0.00
## 6140                                  Atari     0.20     0.07     0.00
## 6141                     Namco Bandai Games     0.00     0.00     0.28
## 6142                     Namco Bandai Games     0.00     0.00     0.28
## 6143                      Sammy Corporation     0.00     0.00     0.28
## 6144                     Empire Interactive     0.14     0.11     0.00
## 6145                               Nintendo     0.00     0.00     0.28
## 6146             Disney Interactive Studios     0.25     0.00     0.00
## 6147                             Tecmo Koei     0.00     0.00     0.28
## 6148             Disney Interactive Studios     0.12     0.02     0.00
## 6149                                    THQ     0.20     0.07     0.00
## 6150                                Xplosiv     0.00     0.23     0.00
## 6151                            Codemasters     0.10     0.14     0.01
## 6152                             Activision     0.13     0.12     0.00
## 6153                                    THQ     0.14     0.11     0.00
## 6154                                Ubisoft     0.26     0.00     0.00
## 6155                                Ubisoft     0.15     0.11     0.00
## 6156            Sony Computer Entertainment     0.14     0.11     0.00
## 6157                                    SCi     0.21     0.06     0.00
## 6158                                  Atari     0.14     0.11     0.00
## 6159 Warner Bros. Interactive Entertainment     0.26     0.00     0.00
## 6160            Sony Computer Entertainment     0.26     0.00     0.00
## 6161                             Activision     0.26     0.00     0.00
## 6162                              Interplay     0.20     0.07     0.00
## 6163                                  Atari     0.12     0.10     0.03
## 6164                                 Capcom     0.00     0.00     0.28
## 6165                            D3Publisher     0.17     0.09     0.00
## 6166                        Electronic Arts     0.26     0.00     0.00
## 6167                                 Capcom     0.16     0.00     0.10
## 6168                      Eidos Interactive     0.14     0.11     0.00
## 6169                                Ubisoft     0.20     0.07     0.00
## 6170                             Activision     0.13     0.12     0.00
## 6171            Sony Computer Entertainment     0.09     0.06     0.10
## 6172                     Namco Bandai Games     0.10     0.12     0.02
## 6173                              505 Games     0.14     0.11     0.00
## 6174                              505 Games     0.10     0.14     0.00
## 6175                           Midway Games     0.14     0.11     0.00
## 6176                                 Laguna     0.03     0.01     0.23
## 6177                 Ignition Entertainment     0.11     0.06     0.08
## 6178                             Activision     0.18     0.06     0.00
## 6179             Disney Interactive Studios     0.18     0.08     0.00
## 6180                             Activision     0.26     0.00     0.00
## 6181                        Electronic Arts     0.21     0.06     0.00
## 6182             Disney Interactive Studios     0.22     0.06     0.00
## 6183           Konami Digital Entertainment     0.16     0.11     0.00
## 6184                                   Sega     0.15     0.10     0.00
## 6185 Warner Bros. Interactive Entertainment     0.20     0.05     0.00
## 6186                         TDK Mediactive     0.20     0.07     0.00
## 6187                                  Spike     0.06     0.00     0.20
## 6188                             Activision     0.13     0.13     0.00
## 6189                             Activision     0.24     0.02     0.00
## 6190                                  Ocean     0.00     0.00     0.28
## 6191                                    THQ     0.22     0.06     0.00
## 6192           Konami Digital Entertainment     0.21     0.06     0.00
## 6193                              505 Games     0.10     0.13     0.00
## 6194                               Nintendo     0.17     0.00     0.08
## 6195                             Activision     0.16     0.10     0.00
## 6196                             Tecmo Koei     0.14     0.11     0.00
## 6197                                    THQ     0.14     0.11     0.00
## 6198                           Midway Games     0.14     0.11     0.00
## 6199                                 Capcom     0.12     0.12     0.01
## 6200                        Electronic Arts     0.16     0.09     0.00
## 6201                                Unknown     0.21     0.06     0.00
## 6202                        Electronic Arts     0.12     0.11     0.00
## 6203            Sony Computer Entertainment     0.13     0.11     0.00
## 6204           Konami Digital Entertainment     0.13     0.02     0.12
## 6205                            Square Enix     0.14     0.11     0.00
## 6206        Midas Interactive Entertainment     0.14     0.11     0.00
## 6207                      Eidos Interactive     0.05     0.04     0.17
## 6208 Warner Bros. Interactive Entertainment     0.20     0.05     0.00
## 6209                                    Elf     0.00     0.00     0.28
## 6210                             Tecmo Koei     0.04     0.11     0.11
## 6211                              505 Games     0.03     0.21     0.00
## 6212                                Ubisoft     0.12     0.13     0.00
## 6213                             Activision     0.15     0.11     0.00
## 6214                     Namco Bandai Games     0.00     0.00     0.28
## 6215                             Activision     0.21     0.06     0.00
## 6216                                Ubisoft     0.21     0.04     0.00
## 6217                                   Sega     0.20     0.02     0.03
## 6218                             Activision     0.11     0.01     0.00
## 6219                             Activision     0.16     0.10     0.00
## 6220                           Video System     0.00     0.00     0.28
## 6221                                   Sega     0.00     0.00     0.28
## 6222                                  Atari     0.14     0.11     0.00
## 6223                                   Sega     0.00     0.00     0.28
## 6224                               Nintendo     0.00     0.00     0.27
## 6225           Konami Digital Entertainment     0.00     0.00     0.26
## 6226                  Acclaim Entertainment     0.21     0.06     0.00
## 6227                     Namco Bandai Games     0.09     0.10     0.06
## 6228                             Activision     0.26     0.00     0.00
## 6229                        Electronic Arts     0.15     0.10     0.00
## 6230                                    THQ     0.14     0.11     0.00
## 6231                             Activision     0.21     0.06     0.00
## 6232                  Acclaim Entertainment     0.14     0.11     0.00
## 6233                        Electronic Arts     0.14     0.11     0.00
## 6234                                    THQ     0.23     0.02     0.00
## 6235           Konami Digital Entertainment     0.00     0.00     0.27
## 6236           Konami Digital Entertainment     0.20     0.07     0.00
## 6237                                Ubisoft     0.14     0.11     0.00
## 6238                                  Atlus     0.13     0.00     0.14
## 6239                     Namco Bandai Games     0.00     0.00     0.28
## 6240                          From Software     0.06     0.04     0.15
## 6241                        Electronic Arts     0.11     0.11     0.01
## 6242                               Nintendo     0.00     0.00     0.28
## 6243                        Nippon Columbia     0.00     0.00     0.28
## 6244                             Nichibutsu     0.00     0.00     0.28
## 6245                        Electronic Arts     0.24     0.01     0.00
## 6246            Sony Computer Entertainment     0.05     0.03     0.17
## 6247                             Activision     0.11     0.14     0.00
## 6248                                 Capcom     0.00     0.00     0.27
## 6249                       Activision Value     0.13     0.11     0.00
##      Other_Sales Global_Sales Critic_Score Critic_Count User_Score User_Count
## 1           8.45        82.53           76           51          8        322
## 2           0.77        40.24           NA           NA                    NA
## 3           3.29        35.52           82           73        8.3        709
## 4           2.95        32.77           80           73          8        192
## 5           1.00        31.37           NA           NA                    NA
## 6           0.58        30.26           NA           NA                    NA
## 7           2.88        29.80           89           65        8.5        431
## 8           2.84        28.92           58           41        6.6        129
## 9           2.24        28.32           87           80        8.4        594
## 10          0.47        28.31           NA           NA                    NA
## 11          2.74        24.67           NA           NA                    NA
## 12          1.90        23.21           91           64        8.6        464
## 13          0.71        23.10           NA           NA                    NA
## 14          2.15        22.70           80           63        7.7        146
## 15          1.69        21.81           61           45        6.3        106
## 16          1.77        21.79           80           33        7.4         52
## 17          3.96        21.04           97           50        8.2       3994
## 18         10.57        20.81           95           80          9       1588
## 19          0.55        20.61           NA           NA                    NA
## 20          2.04        20.15           77           58        7.9         50
## 21          1.36        18.25           NA           NA                    NA
## 22          0.42        18.14           NA           NA                    NA
## 23          0.46        17.28           NA           NA                    NA
## 24          1.41        16.27           97           58        8.1       3711
## 25          1.78        16.15           95           62        8.7        730
## 26          0.50        15.85           NA           NA                    NA
## 27          1.18        15.29           77           37        7.1         19
## 28          0.80        15.14           NA           NA                    NA
## 29          1.16        14.98           95           54        8.4        314
## 30          1.32        14.73           88           81        3.4       8713
## 31          0.59        14.64           NA           NA                    NA
## 32          2.38        14.63           NA           NA                    NA
## 33          1.13        14.61           87           89        6.3       1454
## 34          0.78        14.60           NA           NA                    NA
## 35          2.42        13.79           83           21        5.3        922
## 36          1.12        13.67           83           73        4.8       2256
## 37          1.28        13.47           94          100        6.3       2698
## 38          1.57        13.32           88           39        3.2       5234
## 39          1.30        13.10           97           56        8.5        664
## 40          1.01        12.84           93           81        8.9       1662
## 41          0.91        12.66           85           73        8.2        632
## 42          1.79        12.63           88           58        6.4       1094
## 43          1.97        12.61           97           66        8.3       2899
## 44          0.86        12.13           86           57        8.7        242
## 45          1.21        12.12           94           86        7.8       4100
## 46          0.23        11.89           NA           NA                    NA
## 47          0.76        11.77           NA           NA                    NA
## 48          0.74        11.68           NA           NA                    NA
## 49          7.53        11.66           89           74        8.5        272
## 50          0.74        11.35           97           73        8.9       2147
## 51          0.29        11.18           NA           NA                    NA
## 52          1.03        11.01           98           86        7.9       2951
## 53          0.52        10.95           96           16        8.7        138
## 54          0.78        10.81           90           82        8.4        921
## 55          2.11        10.70           84           82        7.5       1112
## 56          1.60        10.60           94           67        6.3       2073
## 57          0.29        10.55           NA           NA                    NA
## 58          1.61        10.50           98           64        7.5       2833
## 59          0.35        10.49           NA           NA                    NA
## 60          0.97        10.30           NA           NA                    NA
## 61          0.91        10.25           73           29        2.6       2117
## 62          1.06        10.12           74           15        7.8         16
## 63          0.63         9.90           78           70        7.2        424
## 64          0.15         9.87           NA           NA                    NA
## 65          0.79         9.86           91           99        7.9       2045
## 66          0.96         9.72           92           20        9.2       1282
## 67          0.74         9.71           87           87          7       3260
## 68          0.50         9.49           93           23          9        135
## 69          0.78         9.44           74           24        7.3         24
## 70          1.25         9.36           71           10        2.6       1047
## 71          0.90         9.31           94           70        8.4       1320
## 72          0.23         9.30           NA           NA                    NA
## 73          0.81         9.18           NA           NA                    NA
## 74          0.39         9.16           88           70        8.7        626
## 75          0.68         8.91           72           27        7.8         85
## 76          0.85         8.79           96           89        8.4       3589
## 77          0.18         8.76           NA           NA                    NA
## 78          1.28         8.57           82           42        4.3        896
## 79          0.08         8.49           95           91        8.2       1218
## 80          0.67         8.38           68           42        7.4         54
## 81          0.70         8.27           62           41        6.3        190
## 82          1.97         8.16           88           37        6.6        348
## 83          0.15         8.09           NA           NA                    NA
## 84          0.41         8.07           NA           NA                    NA
## 85          0.33         8.05           92           53        8.7       1056
## 86          0.60         8.01           86           75        7.6        886
## 87          0.91         7.99           NA           NA                    NA
## 88          1.28         7.98           NA           NA                    NA
## 89          0.23         7.86           90           24        8.6        644
## 90          0.08         7.81           NA           NA                    NA
## 91          0.54         7.72           83           46        8.5        203
## 92          1.73         7.69           88           65        7.6        451
## 93          1.23         7.66           83           39        5.7       1443
## 94          0.16         7.60           NA           NA                    NA
## 95          1.11         7.59           85           41          5        398
## 96          0.31         7.58           NA           NA                    NA
## 97          0.48         7.55           NA           NA                    NA
## 98          0.62         7.51           97           87        9.1       1854
## 99          0.19         7.46           NA           NA                    NA
## 100         0.68         7.39           NA           NA                    NA
## 101         0.69         7.38           84           84        7.6        580
## 102         0.69         7.32           84           57        7.4       2142
## 103         1.02         7.20           85           33        8.6        171
## 104         0.73         7.20           49           21          8        110
## 105         1.08         7.17           85           38        7.5       1761
## 106         1.13         7.16           87           58        6.5       4228
## 107         0.29         7.16           96           15        9.1        367
## 108         0.68         7.15           95           73          9       1658
## 109         0.45         7.14           NA           NA                    NA
## 110         0.28         7.13           91           12        8.9        432
## 111         0.51         7.09           88           82        9.1       1599
## 112         0.22         7.07           92           38        9.1        568
## 113         0.19         6.95           NA           NA                    NA
## 114         1.09         6.90           82           39        8.6        132
## 115         0.99         6.83           88           29        8.5        135
## 116         0.30         6.82           NA           NA                    NA
## 117         0.55         6.76           74           10        7.3         28
## 118         0.64         6.75           93           90        7.7       2739
## 119         1.03         6.74           92           97        8.3       3712
## 120         0.66         6.71           NA           NA        tbd         NA
## 121         1.03         6.68           94           44        8.4        993
## 122         0.98         6.66           96          105        8.8       5187
## 123         1.39         6.65           NA           NA                    NA
## 124         0.62         6.62           74           45        7.4         27
## 125         0.14         6.51           NA           NA                    NA
## 126         0.99         6.49           95           73        8.8       2456
## 127         1.37         6.47           86           37        4.3        576
## 128         1.12         6.45           85           41        6.9       1307
## 129         0.46         6.44           87           77        8.6        368
## 130         0.07         6.43           97           68        8.6       1283
## 131         1.00         6.41           92           16        6.4       2527
## 132         0.21         6.41           76           28          9        222
## 133         0.07         6.40           85           46        8.8        597
## 134         0.99         6.39           NA           NA                    NA
## 135         0.61         6.34           83           94        7.1       1163
## 136         0.58         6.32           95           96          9       2316
## 137         0.17         6.31           92           61        8.6        439
## 138         0.12         6.30           NA           NA                    NA
## 139         0.00         6.29           93           57        7.3       2182
## 140         0.33         6.27           87           22        8.1         78
## 141         0.50         6.21           91           96        7.8       1504
## 142         0.51         6.19           73           51        7.4         95
## 143         0.60         6.09           94           88        8.3       2295
## 144         0.90         6.08           82           47        5.7        988
## 145         0.72         6.05           96           42        8.7       1026
## 146         0.19         6.03           NA           NA                    NA
## 147         0.24         6.03           94           20        9.4        918
## 148         0.82         5.99           94           82        8.7       3558
## 149         1.74         5.95           92           64        7.6        972
## 150         0.99         5.87           95           98        9.1       8003
## 151         0.87         5.82           95           85        6.8       5311
## 152         0.45         5.82           89           13        9.2        364
## 153         0.15         5.78           87           65        8.8        197
## 154         0.23         5.74           89            8        8.9        102
## 155         0.92         5.64           76           95        6.1       5380
## 156         0.51         5.64           80           17        8.9         62
## 157         0.57         5.63           67           35        7.2         21
## 158         0.11         5.58           NA           NA                    NA
## 159         0.04         5.55           NA           NA                    NA
## 160         0.86         5.55           91           70        8.6       1202
## 161         0.56         5.54           81           77        7.7       1074
## 162         0.50         5.49           92           90          8        516
## 163         0.20         5.49           84           19        7.8         41
## 164         0.34         5.48           81           48        8.7        124
## 165         0.81         5.48           96           42        8.6       2162
## 166         0.47         5.48           97           14        7.9        764
## 167         0.23         5.47           93           24        8.3        108
## 168         0.20         5.46           NA           NA                    NA
## 169         0.09         5.45           NA           NA                    NA
## 170         0.82         5.42           66           22        7.1        156
## 171         0.83         5.39           85           45        7.6        409
## 172         0.85         5.38           93          113        7.9       7064
## 173         0.20         5.34           NA           NA                    NA
## 174         0.51         5.33           83           83        7.3       2483
## 175         0.16         5.31           NA           NA                    NA
## 176         0.14         5.30           94           22        8.9        779
## 177         0.44         5.29           84           61        6.7       1196
## 178         0.17         5.29           85           45        6.6        400
## 179         0.06         5.27           NA           NA                    NA
## 180         0.48         5.27           81           53        5.4        898
## 181         0.87         5.26           NA           NA                    NA
## 182         0.51         5.26           90           82        8.8       1305
## 183         0.28         5.24           85           13                    NA
## 184         0.71         5.23           94           29        8.5        140
## 185         0.24         5.23           NA           NA                    NA
## 186         0.32         5.22           84           70        8.1        733
## 187         0.20         5.21           89           63        8.8        245
## 188         0.20         5.20           NA           NA                    NA
## 189         0.52         5.19           85           72        8.6        147
## 190         0.15         5.19           NA           NA                    NA
## 191         0.57         5.16           90           48        6.1        403
## 192         0.11         5.15           NA           NA                    NA
## 193         0.54         5.14           88           86          4       9629
## 194         0.80         5.13           68           30        7.6        100
## 195         0.11         5.13           NA           NA                    NA
## 196         0.20         5.12           NA           NA                    NA
## 197         0.68         5.12           92           69        8.5        112
## 198         0.38         5.10           80           88        6.5        604
## 199         0.57         5.09           NA           NA                    NA
## 200         0.64         5.09           84           76        7.5        667
## 201         0.48         5.08           90           57          8        416
## 202         0.22         5.07           NA           NA                    NA
## 203         1.12         5.07           89           51          8        233
## 204         0.73         5.05           91            8          9        266
## 205         1.18         5.03           86           50          8        150
## 206         0.20         5.02           92           18        9.2         69
## 207         0.33         5.01           NA           NA                    NA
## 208         0.21         5.00           NA           NA                    NA
## 209         1.48         4.98           82           24        8.2         46
## 210         0.46         4.98           68           34        7.1         47
## 211         0.37         4.93           NA           NA                    NA
## 212         0.45         4.93           93           84        8.5       1655
## 213         0.77         4.92           88           66        8.1       2306
## 214         0.66         4.91           88           29          8        121
## 215         0.10         4.88           NA           NA                    NA
## 216         0.00         4.87           NA           NA                    NA
## 217         0.38         4.87           NA           NA                    NA
## 218         0.10         4.85           NA           NA                    NA
## 219         0.58         4.84           93           82        8.2       3052
## 220         0.82         4.82           81           40        7.3        769
## 221         0.61         4.80           92          101        8.7       2633
## 222         0.21         4.79           88           20          9        233
## 223         0.45         4.76           80            9        5.4         46
## 224         0.25         4.73           62           14        7.7         92
## 225         0.42         4.73           94           87        8.7       1472
## 226         0.77         4.71           NA           NA                    NA
## 227         0.79         4.70           NA           NA                    NA
## 228         0.20         4.68           98           19        7.7        299
## 229         0.70         4.67           82           32        8.2         78
## 230         0.24         4.63           91           13        8.6        147
## 231         0.36         4.62           73           50        7.6        119
## 232         0.76         4.62           86           78        8.1       1264
## 233         0.13         4.61           NA           NA                    NA
## 234         0.13         4.60           96           80        8.9        968
## 235         0.43         4.60           86           36        8.4         87
## 236         0.29         4.59           86           74        8.4        458
## 237         0.46         4.57           91           83        8.2        617
## 238         0.48         4.53           NA           NA                    NA
## 239         0.08         4.53           91           30        7.9         78
## 240         0.42         4.53           85           69        7.9        165
## 241         0.05         4.50           NA           NA                    NA
## 242         0.61         4.49           84           29        8.2         39
## 243         0.41         4.48           84          101        6.4       2438
## 244         0.23         4.48           76           25        7.9         41
## 245         0.02         4.47           NA           NA                    NA
## 246         0.71         4.46           77           82        3.4       1129
## 247         0.43         4.45           94           75        8.9        997
## 248         0.26         4.43           81           88        8.5       1184
## 249         0.33         4.42           77           61        7.9        471
## 250         0.46         4.41           97           34        7.5        298
## 251         0.86         4.39           86           19        8.9         33
## 252         0.40         4.38           94           90        8.7       1109
## 253         0.08         4.38           NA           NA                    NA
## 254         0.47         4.37           82           36        9.1        137
## 255         0.39         4.36           56           37        8.3         31
## 256         0.68         4.36           NA           NA        4.8        207
## 257         0.75         4.34           86           70        8.1        715
## 258         0.13         4.34           NA           NA                    NA
## 259         0.17         4.33           87           64          9        766
## 260         0.31         4.33           NA           NA                    NA
## 261         0.32         4.32           93           83          9       1607
## 262         0.68         4.32           NA           NA                    NA
## 263         0.05         4.31           NA           NA                    NA
## 264         0.40         4.29           NA           NA        4.9        221
## 265         0.64         4.28           NA           NA        4.5        109
## 266         0.41         4.27           89           95        6.5       2423
## 267         0.07         4.24           79           10        7.3          6
## 268         0.61         4.23           91           70        8.9       1122
## 269         1.93         4.23           91           68        9.3        955
## 270         0.70         4.22           80           39        7.5        613
## 271         0.38         4.22           88           39        6.2       1749
## 272         0.40         4.22           84           41        4.2        435
## 273         0.75         4.21           85           59        8.7        109
## 274         0.23         4.21           NA           NA                    NA
## 275         0.84         4.21           80           32        7.8         47
## 276         0.83         4.20           80           32        7.5         22
## 277         0.52         4.19           80           67        7.1        120
## 278         0.43         4.19           80           77        7.2        564
## 279         0.53         4.18           NA           NA                    NA
## 280         0.04         4.17           NA           NA                    NA
## 281         0.52         4.16           94           61        7.3        330
## 282         0.07         4.16           NA           NA                    NA
## 283         0.11         4.16           NA           NA                    NA
## 284         0.56         4.14           95           25        7.7         65
## 285         0.00         4.12           96           24        9.1       3161
## 286         0.09         4.12           NA           NA                    NA
## 287         0.89         4.11           NA           NA                    NA
## 288         0.07         4.10           NA           NA                    NA
## 289         0.00         4.09           91           46        7.9        785
## 290         0.61         4.08           88           31        8.4        809
## 291         1.67         4.07           93           70        8.9        709
## 292         0.77         4.06           NA           NA        8.2         23
## 293         0.33         4.05           84           81        8.1        769
## 294         0.41         4.05           90           66        8.3        381
## 295         0.42         4.05           56           27          6         44
## 296         0.64         4.05           80           80        6.3       2996
## 297         0.06         4.05           NA           NA                    NA
## 298         0.35         4.05           85           25        8.5        117
## 299         0.63         4.04           85           83        7.7       1653
## 300         0.04         4.03           NA           NA                    NA
## 301         0.04         4.01           NA           NA                    NA
## 302         0.54         3.98           61           21        tbd         NA
## 303         0.38         3.97           89           76        8.6        681
## 304         0.59         3.97           92           79        9.2      10179
## 305         0.62         3.96           70           40        4.9       2050
## 306         0.64         3.95           87           89        7.6       2679
## 307         0.38         3.95           93           81          8       1958
## 308         0.59         3.94           90           57          8        910
## 309         0.37         3.94           84           65        8.8         72
## 310         0.11         3.91           NA           NA                    NA
## 311         0.40         3.90           81           27        8.7         39
## 312         0.42         3.90           90           38        8.7        121
## 313         0.11         3.89           86           80        8.7        348
## 314         0.60         3.88           94           32        8.1       9073
## 315         0.69         3.88           87           51        6.7        364
## 316         0.70         3.87           88           62        8.6        229
## 317         0.00         3.87           NA           NA                    NA
## 318         0.67         3.87           84            9        7.4        220
## 319         0.27         3.85           NA           NA                    NA
## 320         0.68         3.85           91           26        9.1         38
## 321         0.50         3.84           76           64        7.9        104
## 322         0.06         3.84           NA           NA                    NA
## 323         0.13         3.83           NA           NA                    NA
## 324         0.57         3.83           78           49        3.7       1564
## 325         0.35         3.83           59           22          4          4
## 326         0.60         3.80           80           64          7       2219
## 327         0.42         3.79           68           33        6.9         39
## 328         0.25         3.77           NA           NA                    NA
## 329         0.26         3.77           NA           NA                    NA
## 330         0.36         3.76           77           60        7.5         66
## 331         0.17         3.76           79           21          8         29
## 332         0.86         3.74           NA           NA                    NA
## 333         0.22         3.73           64           11        7.5         41
## 334         0.45         3.72           NA           NA                    NA
## 335         0.11         3.72           NA           NA                    NA
## 336         0.31         3.71           85           56        7.9        417
## 337         0.19         3.71           91           15        8.8        207
## 338         0.57         3.71           88           36        8.1        840
## 339         0.59         3.70           81           27        7.6         56
## 340         0.10         3.70           NA           NA                    NA
## 341         0.00         3.67           NA           NA                    NA
## 342         0.35         3.67           94           27        8.5        128
## 343         0.32         3.66           NA           NA                    NA
## 344         0.41         3.66           67           15        7.3         13
## 345         0.79         3.65           74           34        8.4         31
## 346         0.10         3.65           NA           NA                    NA
## 347         0.24         3.65           82           42        7.9         82
## 348         0.33         3.64           90           35        8.7        312
## 349         0.06         3.63           NA           NA                    NA
## 350         2.93         3.63           82           10        7.9         38
## 351         0.25         3.62           96           38        8.9       1013
## 352         0.34         3.62           86           18        7.6         71
## 353         0.52         3.62           91           56        7.6        203
## 354         0.44         3.61           82           36        8.7        142
## 355         0.16         3.61           NA           NA                    NA
## 356         0.42         3.61           64           23        7.7         32
## 357         0.10         3.60           78           34        8.5        161
## 358         0.51         3.59           85           18        6.9       1580
## 359         0.37         3.59           84           30          9        268
## 360         0.31         3.59           NA           NA        6.2         10
## 361         0.39         3.58           70           39          8          9
## 362         0.16         3.58           NA           NA                    NA
## 363         0.20         3.56           NA           NA                    NA
## 364         0.50         3.54           78           49        7.8        112
## 365         0.49         3.54           72           49        6.8         88
## 366         0.18         3.54           NA           NA                    NA
## 367         0.41         3.53           72           27        7.9         48
## 368         0.41         3.53           NA           NA                    NA
## 369         0.23         3.52           NA           NA                    NA
## 370         0.40         3.52           88           66        7.5        155
## 371         0.17         3.52           NA           NA                    NA
## 372         0.30         3.51           89           67        7.9       1309
## 373         0.08         3.51           NA           NA                    NA
## 374         0.33         3.50           72           59        4.1       1005
## 375         0.06         3.50           NA           NA                    NA
## 376         0.34         3.50           83           91        7.5        523
## 377         0.24         3.49           89           81        8.3        693
## 378         0.51         3.49           84           20        6.4         76
## 379         0.50         3.49           80           14        5.8        579
## 380         0.31         3.48           92           78        8.7       1080
## 381         0.31         3.48           79           21        5.6        542
## 382         0.32         3.47           88           75        8.6        869
## 383         0.37         3.46           NA           NA                    NA
## 384         0.35         3.46           71           70        8.8         29
## 385         0.34         3.45           83           30        8.4         28
## 386         0.00         3.44           NA           NA                    NA
## 387         0.29         3.44           84           83        8.2        715
## 388         0.29         3.44           79           23        8.3        126
## 389         0.02         3.42           NA           NA                    NA
## 390         0.22         3.42           70           15          8         67
## 391         0.48         3.41           93           86        8.2       3943
## 392         0.43         3.41           80           50        8.9        106
## 393         0.40         3.41           NA           NA                    NA
## 394         0.61         3.40           88           15        6.7         35
## 395         0.46         3.39           91           86        8.4        657
## 396         0.17         3.39           68           12        8.2         99
## 397         0.52         3.39           76           86        6.8       1319
## 398         0.32         3.38           76           49        7.9         75
## 399         0.31         3.37           75           11        5.5       1735
## 400         0.13         3.36           NA           NA                    NA
## 401         0.06         3.36           NA           NA                    NA
## 402         0.67         3.35           90           32        8.5       1041
## 403         0.18         3.34           NA           NA                    NA
## 404         0.02         3.33           NA           NA                    NA
## 405         0.46         3.33           77           20        8.5         66
## 406         0.30         3.33           NA           NA                    NA
## 407         0.05         3.32           NA           NA                    NA
## 408         0.43         3.32           60           34        7.2         82
## 409         0.26         3.31           87           75        7.8        228
## 410         0.22         3.31           80           21        8.5         86
## 411         0.29         3.30           86           35        7.9        701
## 412         0.46         3.28           85           31        8.7        105
## 413         0.01         3.28           NA           NA                    NA
## 414         0.34         3.28           82           74        7.5        563
## 415         0.31         3.27           77           39          8         94
## 416         0.27         3.26           86           62        9.2        111
## 417         0.87         3.25           NA           NA                    NA
## 418         0.24         3.25           84           45        4.4        459
## 419         0.32         3.25           63           43        4.6        116
## 420         0.22         3.24           NA           NA                    NA
## 421         0.60         3.24           83           37        5.9        180
## 422         0.44         3.23           81           81        7.7        758
## 423         0.29         3.23           85           69        7.2       1267
## 424         0.16         3.21           NA           NA                    NA
## 425         0.20         3.21           88           85        8.7        691
## 426         0.16         3.20           NA           NA                    NA
## 427         0.02         3.20           NA           NA                    NA
## 428         0.10         3.20           NA           NA                    NA
## 429         0.00         3.19           NA           NA                    NA
## 430         0.66         3.18           91           79        8.6        565
## 431         0.19         3.18           62           30        8.1        137
## 432         0.43         3.18           83           67          8        463
## 433         0.26         3.17           82           63        7.6         85
## 434         0.49         3.17           89           78        7.7       1010
## 435         0.17         3.17           89           22        9.1         95
## 436         0.09         3.15           87           42        8.9        137
## 437         2.46         3.14           83           12        6.5         36
## 438         0.30         3.14           NA           NA          8         37
## 439         0.16         3.13           87           19          9        107
## 440         0.22         3.13           73           45        6.8        155
## 441         0.13         3.12           88           13                    NA
## 442         0.04         3.12           NA           NA                    NA
## 443         0.29         3.12           82           43        8.5        101
## 444         0.01         3.12           NA           NA                    NA
## 445         0.13         3.11           83           48          9         63
## 446         0.46         3.11           82           57        7.8        492
## 447         0.17         3.11           81           12        7.8         10
## 448         0.43         3.10           93           45          8        604
## 449         0.23         3.10           91           81        8.9       1057
## 450         0.40         3.10           74           34        5.4       1304
## 451         0.27         3.10           96           98        8.9       3143
## 452         0.08         3.09           67           28        7.9         71
## 453         0.42         3.08           94           23        7.9         46
## 454         0.07         3.08           NA           NA                    NA
## 455         0.34         3.07           NA           NA                    NA
## 456         0.14         3.07           75           18        7.8         22
## 457         0.29         3.06           74           17        7.9         22
## 458         0.12         3.05           66           60        6.9        106
## 459         0.23         3.05           70           74        3.9       2057
## 460         0.25         3.05           89           59        8.2        892
## 461         0.29         3.05           72           16          8         16
## 462         0.29         3.04           75           42        7.4         32
## 463         0.24         3.04           93           74        5.8       3725
## 464         0.47         3.03           87          107        7.7       2759
## 465         0.16         3.03           NA           NA                    NA
## 466         0.28         3.03           81           75        8.1        307
## 467         0.13         3.02           93           46        8.5        121
## 468         0.07         3.02           NA           NA                    NA
## 469         0.38         3.02           NA           NA                    NA
## 470         0.44         3.01           87           26        6.3        616
## 471         0.47         3.01           91           94        8.1       1505
## 472         0.28         3.00           91           39        8.6       1247
## 473         0.22         3.00           73           78          7        131
## 474         0.19         3.00           88           41        7.2        131
## 475         1.09         3.00           73           24        9.2        173
## 476         0.41         3.00           NA           NA                    NA
## 477         0.07         2.99           NA           NA                    NA
## 478         0.13         2.99           82           23        6.6         20
## 479         0.45         2.99           93           24        9.1         65
## 480         0.13         2.99           94           37        8.5        466
## 481         0.38         2.96           85           73        5.9       2748
## 482         0.47         2.96           84           85        8.1       1886
## 483         0.49         2.96           64           29        7.8         94
## 484         0.41         2.96           85           19        7.8         78
## 485         0.27         2.95           86           68        6.4       2658
## 486         0.44         2.95           88           59        8.5        572
## 487         0.04         2.94           NA           NA                    NA
## 488         0.15         2.94           87           42          9         93
## 489         0.33         2.94           NA           NA                    NA
## 490         0.05         2.94           79           13        7.8          4
## 491         0.26         2.94           93           77        7.3        292
## 492         0.37         2.93           85           98        8.3       1172
## 493         0.15         2.92           76           40        8.8         76
## 494         0.27         2.92           78            7        4.3        700
## 495         0.21         2.92           NA           NA        4.2         85
## 496         0.09         2.91           NA           NA                    NA
## 497         0.27         2.91           91           74        8.7       1692
## 498         0.22         2.90           73           21        8.6         30
## 499         0.45         2.90           93           28          9         45
## 500         0.28         2.89           67           45        6.8         18
## 501         0.20         2.89           85           30        8.9         16
## 502         0.30         2.89           61           37        5.3         23
## 503         0.24         2.89           76           49        7.7         69
## 504         0.26         2.89           83           61        7.4        179
## 505         0.11         2.88           NA           NA                    NA
## 506         0.31         2.87           NA           NA        7.7         15
## 507         0.22         2.87           NA           NA                    NA
## 508         0.17         2.86           81           36        5.8        179
## 509         0.11         2.86           87           34        8.7        111
## 510         0.42         2.85           83           29        7.8       1530
## 511         0.14         2.85           NA           NA                    NA
## 512         0.07         2.85           NA           NA                    NA
## 513         0.05         2.85           NA           NA                    NA
## 514         0.34         2.84           84           60        8.4        494
## 515         0.22         2.83           85           58        6.1         90
## 516         0.39         2.83           NA           NA                    NA
## 517         0.28         2.83           96           88        8.9       2249
## 518         0.09         2.82           97           70        9.3        747
## 519         0.29         2.82           90           59        8.2        791
## 520         0.14         2.82           NA           NA          7          8
## 521         0.27         2.81           NA           NA        tbd         NA
## 522         0.00         2.81           NA           NA                    NA
## 523         0.42         2.81           75           56        7.5        286
## 524         0.58         2.81           NA           NA                    NA
## 525         0.30         2.80           NA           NA        7.6          7
## 526         0.38         2.80           NA           NA                    NA
## 527         0.18         2.79           NA           NA                    NA
## 528         0.11         2.79           NA           NA                    NA
## 529         0.41         2.79           NA           NA                    NA
## 530         0.46         2.79           80           90        7.9       2944
## 531         0.01         2.79           NA           NA                    NA
## 532         0.11         2.79           NA           NA                    NA
## 533         0.07         2.79           NA           NA                    NA
## 534         0.38         2.79           89           22        8.6         39
## 535         0.36         2.78           87           47        8.2        241
## 536         0.25         2.78           NA           NA                    NA
## 537         0.47         2.78           89           59        7.2        301
## 538         0.30         2.78           81           11        5.6         31
## 539         0.46         2.78           89           61        7.5       4926
## 540         0.48         2.78           83           81        7.7        836
## 541         0.24         2.77           83           33        7.7         46
## 542         0.38         2.77           84           85        7.9        942
## 543         0.26         2.77           73           74        6.7        389
## 544         0.25         2.76           NA           NA                    NA
## 545         0.15         2.76           81           42        7.4         67
## 546         0.30         2.76           84           70        7.6        490
## 547         0.03         2.76           NA           NA                    NA
## 548         0.07         2.75           NA           NA                    NA
## 549         0.42         2.75           79           63        7.4        211
## 550         0.23         2.73           NA           NA                    NA
## 551         0.05         2.73           NA           NA                    NA
## 552         0.29         2.73           69           44        6.6        174
## 553         0.40         2.71           NA           NA        3.2         58
## 554         0.10         2.70           95           30        9.1        314
## 555         0.14         2.70           86           23        8.2         56
## 556         0.05         2.70           NA           NA                    NA
## 557         0.24         2.70           89           83        7.8        893
## 558         0.27         2.70           82           71        6.5        233
## 559         0.16         2.69           78           55        5.9         94
## 560         0.19         2.69           84           32          9         41
## 561         0.39         2.69           73           88        6.8       2102
## 562         0.18         2.69           84           47        5.7        120
## 563         0.34         2.68           93           52        9.1        271
## 564         0.00         2.68           NA           NA                    NA
## 565         0.09         2.67           NA           NA                    NA
## 566         0.18         2.67           79           51        7.7         18
## 567         0.32         2.67           83           58        8.7         52
## 568         0.26         2.67           77           39        8.2         69
## 569         0.14         2.67           92           17        8.6         80
## 570         0.09         2.66           85           87        8.5        268
## 571         0.25         2.66           85           67        6.3        171
## 572         0.17         2.65           84           50        5.5        201
## 573         0.26         2.65           NA           NA        6.7         10
## 574         0.40         2.65           89           24        7.7        102
## 575         0.00         2.65           NA           NA                    NA
## 576         0.52         2.65           84           55        6.9        113
## 577         0.03         2.65           NA           NA                    NA
## 578         0.66         2.65           71           24        7.9         47
## 579         0.23         2.63           79           53        6.6        707
## 580         0.14         2.63           78           18        7.8         21
## 581         0.24         2.63           80           65          8        127
## 582         0.36         2.62           90           37        8.2         84
## 583         0.24         2.62           82           92        7.2        454
## 584         0.16         2.62           90           42        7.7        134
## 585         0.64         2.62           NA           NA                    NA
## 586         0.23         2.62           90           63        7.5        133
## 587         0.21         2.61           74           71        6.7        288
## 588         0.44         2.61           71           16        7.6         49
## 589         0.08         2.60           NA           NA                    NA
## 590         0.40         2.60           91           50        8.7        529
## 591         0.35         2.59           84           21        8.1         44
## 592         0.24         2.58           79           47          8        124
## 593         0.43         2.58           87           42        7.5        108
## 594         0.18         2.58           73            4        7.7          7
## 595         0.26         2.58           80           27        8.6         57
## 596         0.24         2.57           80           24        7.4        114
## 597         0.22         2.57           NA           NA                    NA
## 598         0.35         2.57           78           11        7.8         17
## 599         0.18         2.57           72           38        8.7         83
## 600         0.45         2.56           NA           NA                    NA
## 601         0.14         2.56           NA           NA                    NA
## 602         0.07         2.56           73           28        8.3        179
## 603         0.00         2.56           NA           NA                    NA
## 604         0.27         2.56           NA           NA                    NA
## 605         0.23         2.56           83           22        5.5        101
## 606         0.22         2.56           86           68        7.9        725
## 607         0.07         2.54           73           37          8         89
## 608         0.67         2.54           87           68        7.8         98
## 609         0.20         2.53           83           50          7        125
## 610         0.03         2.53           NA           NA                    NA
## 611         0.22         2.52           80           15        7.9         46
## 612         0.28         2.52           75           15          8          5
## 613         0.23         2.52           87           23        4.9        150
## 614         0.06         2.52           NA           NA                    NA
## 615         0.21         2.52           78            8          7         20
## 616         1.51         2.52           NA           NA                    NA
## 617         0.25         2.50           50           23        5.4         16
## 618         2.05         2.50           NA           NA                    NA
## 619         0.01         2.50           NA           NA                    NA
## 620         0.19         2.50           82           68        7.5        120
## 621         0.09         2.49           NA           NA                    NA
## 622         0.15         2.49           79           31        8.8         96
## 623         0.24         2.48           25            8        4.3         26
## 624         0.38         2.48           92          100        8.6       6383
## 625         0.13         2.48           NA           NA                    NA
## 626         0.07         2.47           70           26        7.4         74
## 627         0.25         2.47           85           55        7.7         83
## 628         0.21         2.47           92           72        8.2        178
## 629         0.27         2.47           90           26          8         99
## 630         0.38         2.47           82           50        7.7        384
## 631         0.38         2.46           87           79        6.1       1889
## 632         0.43         2.45           83           50          7        291
## 633         0.02         2.45           NA           NA                    NA
## 634         0.06         2.45           83           12        8.2        190
## 635         0.31         2.45           82           50        8.2        100
## 636         0.07         2.44           NA           NA                    NA
## 637         0.18         2.43           81           26        8.4         42
## 638         0.10         2.43           83           12                    NA
## 639         0.22         2.43           79           13          8         34
## 640         0.37         2.43           NA           NA                    NA
## 641         0.22         2.42           78           17        3.1        290
## 642         0.26         2.42           84           23        6.1        124
## 643         0.05         2.42           NA           NA                    NA
## 644         0.08         2.42           NA           NA                    NA
## 645         0.23         2.42           82           66        7.8        176
## 646         0.20         2.42           71            9        tbd         NA
## 647         0.48         2.42           NA           NA                    NA
## 648         0.58         2.42           73           14        7.9         39
## 649         0.06         2.41           66           28        8.2         92
## 650         0.41         2.41           77           40        6.8         85
## 651         0.08         2.41           82           16        8.4         53
## 652         0.14         2.41           NA           NA                    NA
## 653         1.68         2.41           62           11        6.2         34
## 654         0.22         2.40           82           73        8.1        487
## 655         0.07         2.40           NA           NA                    NA
## 656         0.03         2.40           NA           NA                    NA
## 657         0.00         2.40           NA           NA          9         90
## 658         0.07         2.39           73            4        tbd         NA
## 659         0.10         2.39           NA           NA                    NA
## 660         0.08         2.39           NA           NA                    NA
## 661         0.07         2.38           91           65        8.7        173
## 662         0.20         2.38           83           36        6.1         68
## 663         0.02         2.38           NA           NA                    NA
## 664         0.30         2.38           NA           NA                    NA
## 665         0.20         2.37           71           75        6.9        627
## 666         0.00         2.37           96           81        9.1       8665
## 667         0.30         2.37           62           36        7.6         22
## 668         0.18         2.37           85           46        6.4        108
## 669         0.26         2.37           83           59        8.8         55
## 670         0.18         2.37           42           10        5.5         16
## 671         0.21         2.37           85           41        6.8         58
## 672         0.05         2.36           NA           NA                    NA
## 673         0.21         2.35           81           66        8.5        142
## 674         0.08         2.35           NA           NA                    NA
## 675         0.01         2.35           NA           NA                    NA
## 676         0.17         2.35           73           33        2.9         67
## 677         1.41         2.34           71           11        7.2         31
## 678         0.17         2.34           89           82          9        478
## 679         0.21         2.34           78           22        6.6         28
## 680         0.21         2.34           84           21        8.4        189
## 681         0.24         2.34           86           14        6.2        115
## 682         0.22         2.34           66           46        6.5         39
## 683         0.24         2.32           NA           NA        8.6         16
## 684         0.07         2.32           NA           NA                    NA
## 685         0.14         2.32           NA           NA                    NA
## 686         0.32         2.31           84           42        9.1         51
## 687         0.09         2.31           86           14        8.5         28
## 688         0.01         2.31           NA           NA                    NA
## 689         0.27         2.31           90           69        7.9       2954
## 690         0.10         2.31           NA           NA                    NA
## 691         0.14         2.30           75           69        5.6        382
## 692         0.13         2.30           NA           NA                    NA
## 693         0.38         2.29           76           46        7.7        668
## 694         0.13         2.29           NA           NA        8.3         37
## 695         0.00         2.29           NA           NA                    NA
## 696         0.36         2.29           80           18        6.7         87
## 697         0.10         2.28           77           35        8.7         27
## 698         0.26         2.28           78           42        6.7         76
## 699         0.02         2.28           NA           NA                    NA
## 700         1.82         2.28           82            8        6.9         20
## 701         0.22         2.28           72            7        7.2          6
## 702         0.20         2.28           76           42        7.1         71
## 703         0.18         2.28           68           24        8.2         27
## 704         0.18         2.28           NA           NA                    NA
## 705         0.31         2.27           71           41        6.6        405
## 706         0.04         2.27           81           24        8.9         54
## 707         0.09         2.26           88           17        8.9         42
## 708         0.31         2.26           80           35        8.6         43
## 709         0.35         2.26           76           91        6.3        635
## 710         0.20         2.25           87           37        8.2        440
## 711         0.13         2.25           84           31          9         52
## 712         0.08         2.25           NA           NA                    NA
## 713         0.06         2.25           87           55        9.4        306
## 714         0.17         2.25           79           31        5.5         56
## 715         0.35         2.25           80           89        7.5        914
## 716         0.30         2.24           83           45        7.8         52
## 717         0.13         2.24           87           22        8.1         48
## 718         0.24         2.24           74           53        5.7         72
## 719         0.18         2.24           NA           NA        tbd         NA
## 720         0.23         2.24           69           42        6.7         61
## 721         0.18         2.24           77           59        7.9        288
## 722         0.21         2.23           NA           NA        7.4        355
## 723         0.11         2.23           74           16          8         13
## 724         0.31         2.23           79           61          8        139
## 725         0.19         2.23           80           32        5.6        136
## 726         0.03         2.23           NA           NA                    NA
## 727         0.28         2.23           NA           NA        tbd         NA
## 728         0.35         2.23           91           25        8.2        858
## 729         0.31         2.22           92           44        8.8        204
## 730         0.11         2.22           84           70        8.6        219
## 731         0.19         2.22           80           37        7.6        127
## 732         0.13         2.22           NA           NA                    NA
## 733         0.20         2.22           NA           NA                    NA
## 734         0.33         2.21           73           40        7.3        480
## 735         0.35         2.21           71           47        6.6        233
## 736         0.28         2.21           NA           NA                    NA
## 737         0.02         2.20           NA           NA                    NA
## 738         0.17         2.20           92           55        8.1        220
## 739         0.19         2.20           79           76        5.9       1095
## 740         0.18         2.20           92           69        8.3        156
## 741         0.00         2.20           NA           NA                    NA
## 742         0.23         2.20           NA           NA                    NA
## 743         0.21         2.20           88           73          7        206
## 744         0.20         2.20           80           15        7.9         16
## 745         0.19         2.20           88           93        8.2        573
## 746         0.23         2.20           NA           NA                    NA
## 747         0.08         2.19           94           72        9.2        317
## 748         0.05         2.19           NA           NA                    NA
## 749         0.13         2.19           NA           NA                    NA
## 750         0.40         2.19           81           37        6.1        208
## 751         0.33         2.19           80           41        6.6        132
## 752         0.22         2.18           81           74        7.5        211
## 753         0.01         2.18           NA           NA                    NA
## 754         0.06         2.18           82           26        8.9         28
## 755         0.16         2.18           82           33        5.4        347
## 756         0.06         2.17           NA           NA                    NA
## 757         0.03         2.17           NA           NA                    NA
## 758         0.02         2.17           NA           NA                    NA
## 759         0.20         2.16           80           33        6.9        614
## 760         0.21         2.16           82           54        6.3        539
## 761         0.10         2.16           74           17        7.9         30
## 762         0.18         2.16           79           72        7.6        110
## 763         0.21         2.16           66           30        7.3        136
## 764         0.08         2.15           NA           NA                    NA
## 765         0.12         2.15           69           21        7.6         50
## 766         0.00         2.15           NA           NA                    NA
## 767         0.19         2.15           NA           NA        6.6          5
## 768         0.33         2.14           90           31        6.1       1358
## 769         0.44         2.14           83           30        7.5        511
## 770         0.10         2.14           NA           NA                    NA
## 771         0.10         2.14           NA           NA                    NA
## 772         0.03         2.14           NA           NA                    NA
## 773         0.00         2.14           NA           NA                    NA
## 774         0.02         2.13           NA           NA                    NA
## 775         0.59         2.13           64           45        7.5         30
## 776         0.27         2.13           77           26          9         20
## 777         0.05         2.13           87           44        7.8        212
## 778         0.18         2.12           62            5        5.2         54
## 779         0.09         2.12           85           35        8.2         28
## 780         0.04         2.12           NA           NA                    NA
## 781         0.18         2.11           90           38        6.7        127
## 782         0.03         2.11           NA           NA                    NA
## 783         0.09         2.11           89           31        8.5         92
## 784         0.26         2.11           NA           NA                    NA
## 785         0.13         2.11           78           24        9.3        201
## 786         0.32         2.11           84           26        4.9        142
## 787         0.04         2.10           81           17        8.9         89
## 788         0.08         2.10           84           56        8.7         44
## 789         0.07         2.10           NA           NA                    NA
## 790         0.22         2.10           NA           NA                    NA
## 791         0.32         2.10           73           46          5        845
## 792         0.16         2.10           86           66        8.3        382
## 793         0.29         2.09           83           58        7.9        427
## 794         0.19         2.09           84           60          9        212
## 795         0.14         2.09           NA           NA                    NA
## 796         0.13         2.09           89           50        8.1        100
## 797         0.18         2.09           NA           NA                    NA
## 798         0.34         2.09           74           58        7.9       1287
## 799         0.05         2.09           NA           NA                    NA
## 800         0.20         2.08           85           82        7.6        520
## 801         0.00         2.08           90           53        5.6        953
## 802         0.27         2.08           44            7        6.2         11
## 803         0.09         2.08           77           45        7.1        136
## 804         0.00         2.08           NA           NA        8.3         14
## 805         0.06         2.08           69           33        8.2         57
## 806         0.20         2.08           80           21        6.3         37
## 807         0.11         2.08           NA           NA                    NA
## 808         0.14         2.08           NA           NA                    NA
## 809         0.17         2.08           95           66        8.5        997
## 810         0.12         2.08           64           54        7.1         34
## 811         0.17         2.07           72           21        7.8         54
## 812         0.08         2.07           NA           NA                    NA
## 813         0.22         2.07           49            5        5.2         24
## 814         0.19         2.07           73           16        7.1         27
## 815         0.31         2.07           71           85        6.1       1571
## 816         0.07         2.07           NA           NA                    NA
## 817         0.19         2.06           83           68        7.9         51
## 818         0.24         2.06           89           66        8.9        443
## 819         0.10         2.06           NA           NA                    NA
## 820         0.12         2.06           NA           NA                    NA
## 821         0.08         2.06           NA           NA                    NA
## 822         0.10         2.06           55           13        tbd         NA
## 823         0.13         2.06           88           18        9.2         21
## 824         0.26         2.06           82           62        8.6        208
## 825         0.19         2.06           NA           NA                    NA
## 826         0.25         2.06           92           41        8.8        120
## 827         0.21         2.05           72           42        7.1         78
## 828         0.06         2.05           75           26        8.8         41
## 829         0.36         2.05           NA           NA                    NA
## 830         0.22         2.05           NA           NA        5.5         29
## 831         0.38         2.05           59           40        5.9         71
## 832         0.21         2.05           NA           NA                    NA
## 833         0.05         2.05           NA           NA                    NA
## 834         0.28         2.04           72           38          9         34
## 835         0.31         2.04           82           41        8.2         68
## 836         0.36         2.04           73           26          6         43
## 837         0.07         2.04           78           26        8.9         53
## 838         0.16         2.04           86           56        8.2         63
## 839         0.25         2.04           NA           NA                    NA
## 840         0.05         2.03           NA           NA                    NA
## 841         0.19         2.03           48           11        3.3          4
## 842         0.27         2.03           86           19        7.7         41
## 843         0.16         2.03           89           65        8.1        307
## 844         0.23         2.03           73           24        7.7         29
## 845         0.00         2.02           62           34        8.1         97
## 846         0.22         2.02           89           54        8.7       1397
## 847         0.16         2.02           70           34        7.7         17
## 848         0.19         2.02           81            5        6.6        480
## 849         0.13         2.01           92           72        9.1       1130
## 850         0.36         2.01           64           48        6.4        182
## 851         0.17         2.01           NA           NA        8.4          5
## 852         0.32         2.01           89           43        7.4       1984
## 853         0.03         2.00           NA           NA                    NA
## 854         0.29         2.00           88           67        8.8        545
## 855         0.23         2.00           76           44        7.1        107
## 856         0.24         2.00           71           19        5.7          9
## 857         0.13         1.99           87           14        8.8         45
## 858         0.04         1.99           NA           NA                    NA
## 859         0.09         1.99           76           11        7.9         14
## 860         0.13         1.98           75           53        7.8        162
## 861         0.32         1.98           80           46        7.6         82
## 862         0.04         1.98           NA           NA                    NA
## 863         0.12         1.98           NA           NA        8.5         33
## 864         0.30         1.98           80           53        6.2        667
## 865         0.28         1.97           56           20        4.1         95
## 866         0.17         1.97           68           40        6.6        167
## 867         0.02         1.97           NA           NA                    NA
## 868         0.33         1.96           81           57        8.7         34
## 869         0.24         1.96           NA           NA                    NA
## 870         0.02         1.96           NA           NA                    NA
## 871         0.05         1.96           NA           NA                    NA
## 872         0.18         1.96           85           83        8.4        431
## 873         0.20         1.95           88           69        8.3        225
## 874         0.20         1.95           69           24        7.7         59
## 875         0.16         1.95           67           71          5       1407
## 876         0.09         1.95           93           58        8.6        118
## 877         0.09         1.95           NA           NA                    NA
## 878         0.06         1.95           90           31        8.8         70
## 879         0.25         1.94           80           33        8.9         41
## 880         0.08         1.94           71           29        8.1         41
## 881         0.29         1.94           87           55        7.7        455
## 882         0.00         1.94           NA           NA        tbd         NA
## 883         0.05         1.94           NA           NA                    NA
## 884         0.13         1.94           NA           NA        7.4         10
## 885         0.30         1.94           78           39        6.4         55
## 886         0.18         1.94           87           51          8        106
## 887         0.04         1.94           77           32        8.9        137
## 888         0.18         1.94           83           19        7.6         78
## 889         0.07         1.94           NA           NA                    NA
## 890         0.12         1.94           63           18        8.3         22
## 891         0.16         1.93           93           33        8.5       1647
## 892         0.21         1.93           79           48        8.5         69
## 893         0.06         1.93           NA           NA                    NA
## 894         0.03         1.93           NA           NA                    NA
## 895         0.16         1.93           72           61        7.5         87
## 896         0.31         1.93           86           81          6       1079
## 897         0.07         1.93           NA           NA                    NA
## 898         0.06         1.92           NA           NA                    NA
## 899         0.18         1.92           NA           NA        4.7        504
## 900         0.20         1.92           88           25          8         69
## 901         0.09         1.92           80           22        8.6         31
## 902         0.11         1.92           57           47        6.3        117
## 903         0.25         1.92           80           18        9.2         46
## 904         0.03         1.92           92           15        7.4         48
## 905         0.27         1.92           84           43        7.5         80
## 906         0.22         1.91           83           75        6.5        134
## 907         0.02         1.91           NA           NA                    NA
## 908         0.29         1.91           86           43        6.4        557
## 909         0.31         1.91           79           78        7.1        506
## 910         0.09         1.90           90           45        8.6         80
## 911         0.17         1.89           NA           NA                    NA
## 912         0.12         1.89           69           31        7.8         58
## 913         0.13         1.89           NA           NA                    NA
## 914         0.20         1.89           70           11        7.8         17
## 915         0.18         1.88           85           38        4.4        132
## 916         0.17         1.88           74           46        7.5        685
## 917         0.17         1.88           29            7        4.6          7
## 918         0.08         1.88           NA           NA                    NA
## 919         0.24         1.88           81           43        8.5         90
## 920         0.03         1.88           NA           NA                    NA
## 921         0.21         1.88           NA           NA                    NA
## 922         0.34         1.88           88           47        6.7        162
## 923         0.18         1.88           49           15        6.6         13
## 924         0.07         1.88           NA           NA                    NA
## 925         1.33         1.87           NA           NA                    NA
## 926         0.09         1.87           82           39        7.7        145
## 927         0.14         1.87           NA           NA                    NA
## 928         0.24         1.87           76           19        4.1         91
## 929         0.10         1.87           78           17        9.1         90
## 930         0.06         1.86           NA           NA                    NA
## 931         0.26         1.86           NA           NA                    NA
## 932         0.08         1.86           86           39        6.7         41
## 933         0.02         1.86           71           32        8.5         24
## 934         0.04         1.86           NA           NA                    NA
## 935         0.10         1.86           74           12        8.4        248
## 936         0.49         1.86           NA           NA                    NA
## 937         0.18         1.86           71           18        7.9         75
## 938         0.24         1.86           70           16        7.4          8
## 939         0.28         1.86           73           42        6.5        403
## 940         0.12         1.86           94           16        8.1        297
## 941         0.03         1.85           84           55        8.6        246
## 942         0.06         1.85           76           37        7.9         84
## 943         0.03         1.85           NA           NA                    NA
## 944         0.30         1.85           87           31        7.8        790
## 945         0.33         1.84           NA           NA                    NA
## 946         0.29         1.84           82           22        7.9         76
## 947         0.15         1.84           80            4        4.5          8
## 948         0.25         1.84           87           25        8.5         36
## 949         0.00         1.83           NA           NA                    NA
## 950         0.20         1.83           67           25        8.3         66
## 951         0.03         1.83           NA           NA                    NA
## 952         0.07         1.83           NA           NA                    NA
## 953         0.09         1.83           80           68        8.8        206
## 954         0.02         1.83           NA           NA                    NA
## 955         0.16         1.83           NA           NA                    NA
## 956         0.17         1.83           70           24        7.5         28
## 957         0.05         1.83           NA           NA                    NA
## 958         0.28         1.82           NA           NA                    NA
## 959         0.22         1.82           83           90        8.4        932
## 960         0.22         1.82           82           42        4.8       1265
## 961         0.12         1.82           NA           NA                    NA
## 962         0.02         1.82           72            9          6          5
## 963         0.00         1.82           85           17        7.9         70
## 964         0.17         1.82           89           81        8.9       1441
## 965         0.17         1.82           96           54        8.9        797
## 966         0.18         1.81           82           27        8.2         11
## 967         0.08         1.81           NA           NA                    NA
## 968         0.04         1.81           94           36          8         84
## 969         0.28         1.81           68           66        5.1       1147
## 970         0.23         1.81           88           64          9        178
## 971         0.77         1.80           NA           NA          8         13
## 972         0.07         1.80           83           23        8.3         46
## 973         0.13         1.80           80           54          6        148
## 974         0.12         1.80           NA           NA                    NA
## 975         0.16         1.80           89           46        7.6        105
## 976         0.14         1.80           87           85        7.9        863
## 977         0.27         1.79           75           65        7.3       1223
## 978         0.09         1.79           90           62        8.9        491
## 979         0.14         1.79           NA           NA                    NA
## 980         0.06         1.79           NA           NA                    NA
## 981         0.13         1.79           NA           NA                    NA
## 982         0.24         1.78           85           41        8.5         47
## 983         0.08         1.78           NA           NA                    NA
## 984         0.36         1.78           57           53        7.6         47
## 985         0.16         1.77           47           21        6.6        129
## 986         0.12         1.77           NA           NA                    NA
## 987         0.04         1.77           NA           NA                    NA
## 988         0.06         1.77           87           35        8.6         44
## 989         0.02         1.76           75           30        7.4         27
## 990         0.15         1.76           76            7        7.7         10
## 991         0.16         1.76           NA           NA                    NA
## 992         0.04         1.76           NA           NA                    NA
## 993         0.07         1.76           NA           NA                    NA
## 994         0.24         1.76           84           58        8.1         47
## 995         0.16         1.76           75            5          9         54
## 996         0.06         1.76           91           29        9.3        198
## 997         0.07         1.76           NA           NA                    NA
## 998         0.02         1.76           NA           NA                    NA
## 999         0.22         1.76           83           46        8.9         73
## 1000        0.07         1.76           84           29        6.1         27
## 1001        0.22         1.76           71           34        5.7         33
## 1002        0.03         1.76           NA           NA                    NA
## 1003        0.29         1.76           70           25        8.2         24
## 1004        0.26         1.76           84           25          8         21
## 1005        0.04         1.75           NA           NA                    NA
## 1006        0.07         1.75           80           55        9.1         57
## 1007        0.27         1.75           NA           NA                    NA
## 1008        0.32         1.75           82           35        4.9         83
## 1009        0.32         1.75           83           66          8        291
## 1010        0.27         1.75           NA           NA                    NA
## 1011        0.02         1.75           NA           NA                    NA
## 1012        0.01         1.75           NA           NA                    NA
## 1013        0.29         1.75           NA           NA                    NA
## 1014        0.31         1.75           81           28        7.1         47
## 1015        0.18         1.75           83           75          8        340
## 1016        0.05         1.75           65           38        6.8        135
## 1017        0.22         1.75           55            6        6.2          6
## 1018        0.03         1.75           NA           NA                    NA
## 1019        0.24         1.74           NA           NA                    NA
## 1020        0.10         1.74           NA           NA                    NA
## 1021        0.17         1.74           83           35        8.7         99
## 1022        0.27         1.74           NA           NA        5.1        383
## 1023        0.14         1.74           55           61        3.5        145
## 1024        0.17         1.74           78           38        8.3        444
## 1025        0.01         1.74           NA           NA                    NA
## 1026        0.04         1.74           NA           NA                    NA
## 1027        0.27         1.74           63           94        6.6       3172
## 1028        0.22         1.73           92           33        8.9         71
## 1029        0.20         1.73           54           83        6.5       1074
## 1030        0.05         1.73           NA           NA                    NA
## 1031        0.07         1.73           NA           NA                    NA
## 1032        0.03         1.73           78           41        8.1         31
## 1033        0.08         1.73           78           18        7.9         27
## 1034        0.17         1.73           79           51        7.1        453
## 1035        0.22         1.72           NA           NA                    NA
## 1036        0.26         1.72           61           60        5.4        575
## 1037        0.94         1.72           NA           NA                    NA
## 1038        0.18         1.72           82            9        6.3        101
## 1039        0.08         1.72           91           39        7.6         26
## 1040        0.15         1.72           80           55        7.7        134
## 1041        0.32         1.72           78           26        2.5       5664
## 1042        0.14         1.71           88           56        7.9        815
## 1043        0.08         1.71           NA           NA                    NA
## 1044        0.15         1.71           89           25        8.9         43
## 1045        0.18         1.71           84           57        9.1         81
## 1046        0.07         1.71           83           25        8.7         35
## 1047        0.00         1.71           NA           NA                    NA
## 1048        0.06         1.71           65           10        tbd         NA
## 1049        0.19         1.71           NA           NA        tbd         NA
## 1050        0.16         1.71           NA           NA                    NA
## 1051        0.15         1.70           20           13        1.9         41
## 1052        1.23         1.70           NA           NA        8.4          9
## 1053        0.24         1.70           95           54        8.4        937
## 1054        0.01         1.70           NA           NA                    NA
## 1055        0.23         1.70           87           18        8.6         23
## 1056        0.23         1.70           74           17        5.3         77
## 1057        0.27         1.70           71           94        4.5       5096
## 1058        0.19         1.70           NA           NA                    NA
## 1059        0.12         1.69           NA           NA        7.8          4
## 1060        0.10         1.69           82           59        8.8         64
## 1061        0.28         1.69           94           27        8.5       1863
## 1062        0.11         1.69           NA           NA                    NA
## 1063        0.26         1.69           NA           NA                    NA
## 1064        0.02         1.69           NA           NA                    NA
## 1065        0.07         1.69           NA           NA                    NA
## 1066        0.08         1.69           64            8        7.1          7
## 1067        0.05         1.69           53           15        6.9         28
## 1068        0.17         1.69           NA           NA                    NA
## 1069        0.06         1.69           96           82        9.4        767
## 1070        0.08         1.69           63           11        tbd         NA
## 1071        0.12         1.68           37            4        tbd         NA
## 1072        0.18         1.68           64           62        5.9        104
## 1073        0.22         1.68           NA           NA                    NA
## 1074        0.04         1.68           NA           NA                    NA
## 1075        0.15         1.68           78           58        8.5        301
## 1076        0.25         1.68           82           50        7.9        135
## 1077        0.03         1.68           NA           NA                    NA
## 1078        0.10         1.68           NA           NA                    NA
## 1079        0.17         1.68           90           70        7.9       2280
## 1080        0.11         1.68           NA           NA                    NA
## 1081        0.00         1.68           79           20        8.2         25
## 1082        0.06         1.68           92           44        9.1        200
## 1083        0.15         1.67           67           32        8.5         12
## 1084        0.32         1.67           73           35        7.9         46
## 1085        0.22         1.67           93           41        9.1        125
## 1086        0.04         1.67           90           14        6.8          4
## 1087        0.06         1.67           83           40        8.9        106
## 1088        0.04         1.67           NA           NA                    NA
## 1089        0.07         1.67           87           10        8.3         36
## 1090        0.10         1.67           NA           NA        tbd         NA
## 1091        0.07         1.67           NA           NA                    NA
## 1092        0.21         1.67           87           41        7.9        597
## 1093        0.22         1.67           84           28        7.8         13
## 1094        0.23         1.67           94           15        8.8         81
## 1095        0.26         1.67           83           37        7.9         24
## 1096        0.18         1.67           86           68        7.9       1346
## 1097        0.14         1.67           71            9          9         85
## 1098        0.26         1.66           79          103        8.2       2161
## 1099        0.20         1.66           44           17          8         41
## 1100        0.04         1.66           NA           NA                    NA
## 1101        0.20         1.66           93           35        8.3         33
## 1102        0.16         1.66           78           28        8.7         22
## 1103        0.21         1.66           83           44        9.2         19
## 1104        0.13         1.66           81           42        6.5        325
## 1105        0.22         1.66           83           22        8.3         28
## 1106        0.15         1.66           79           59        7.2        114
## 1107        0.04         1.66           72           29        8.4         71
## 1108        0.22         1.65           89           69        8.8       1940
## 1109        0.02         1.65           NA           NA                    NA
## 1110        0.07         1.65           77           49        8.5        156
## 1111        0.05         1.65           71           33        7.9         51
## 1112        0.05         1.65           NA           NA                    NA
## 1113        0.14         1.65           56           24        6.7         18
## 1114        0.18         1.65           77           52        6.3         82
## 1115        0.29         1.65           79           64        8.3        544
## 1116        0.00         1.65           NA           NA                    NA
## 1117        0.17         1.65           68           38        7.2         56
## 1118        0.03         1.64           NA           NA                    NA
## 1119        0.16         1.64           72           76        7.6        233
## 1120        0.02         1.64           NA           NA                    NA
## 1121        0.08         1.64           NA           NA                    NA
## 1122        0.03         1.64           NA           NA                    NA
## 1123        0.21         1.64           88           18        8.9         18
## 1124        0.05         1.64           NA           NA                    NA
## 1125        0.22         1.64           83           51        8.5        120
## 1126        0.14         1.63           82           15        7.5        383
## 1127        0.07         1.63           92           42        9.1         93
## 1128        0.26         1.63           70           98        8.1       2652
## 1129        0.04         1.63           89           39        8.7        121
## 1130        0.10         1.63           89           23        8.8         40
## 1131        0.17         1.63           NA           NA          3         40
## 1132        0.23         1.63           81           29        5.2       1651
## 1133        0.11         1.63           90           19        8.8         53
## 1134        0.22         1.62           88           29        8.8         35
## 1135        0.13         1.62           86           80        7.8        869
## 1136        0.20         1.62           84           65          8        131
## 1137        0.19         1.62           NA           NA                    NA
## 1138        0.13         1.62           74           50        3.1         69
## 1139        0.04         1.62           61           28        7.9         69
## 1140        0.26         1.62           83           22        7.7        262
## 1141        0.11         1.62           NA           NA                    NA
## 1142        0.25         1.62           NA           NA        4.5        445
## 1143        0.22         1.62           92           35        8.4        107
## 1144        0.03         1.62           80           44        7.9         50
## 1145        0.21         1.61           77           33        8.7         20
## 1146        0.03         1.61           NA           NA                    NA
## 1147        0.01         1.61           NA           NA                    NA
## 1148        0.04         1.61           76           39        8.7         55
## 1149        0.43         1.61           NA           NA                    NA
## 1150        0.15         1.60           81           77        6.7        559
## 1151        0.09         1.60           69           40          8         37
## 1152        0.11         1.60           64            5        tbd         NA
## 1153        0.07         1.60           NA           NA                    NA
## 1154        0.08         1.60           NA           NA                    NA
## 1155        0.02         1.60           NA           NA                    NA
## 1156        0.17         1.60           81           74          8        267
## 1157        0.10         1.60           86           17        9.2        326
## 1158        0.04         1.60           72           49        7.8        125
## 1159        0.14         1.60           NA           NA        4.2         24
## 1160        0.21         1.59           83           24        7.5         36
## 1161        0.00         1.59           94           12        8.7        850
## 1162        0.18         1.59           85           75        6.7        288
## 1163        0.04         1.59           96           16        9.2        568
## 1164        0.10         1.59           NA           NA                    NA
## 1165        0.02         1.59           NA           NA                    NA
## 1166        0.13         1.59           74           19        6.1         47
## 1167        0.10         1.59           NA           NA                    NA
## 1168        0.13         1.58           53           34        6.7        106
## 1169        0.10         1.58           75           54        8.2        267
## 1170        0.15         1.58           69            8        6.8          6
## 1171        0.15         1.58           85           62        7.9        157
## 1172        0.10         1.58           NA           NA                    NA
## 1173        0.26         1.58           76           38        8.2        253
## 1174        0.08         1.58           76           18        7.6         13
## 1175        0.12         1.58           66           66        6.5        279
## 1176        0.20         1.57           84           63        8.2        311
## 1177        0.15         1.57           78           69        6.8        908
## 1178        1.16         1.57           NA           NA        8.1         15
## 1179        0.20         1.57           90           18        8.7         24
## 1180        0.12         1.57           79           81        5.4        779
## 1181        0.14         1.57           78           15        5.8        712
## 1182        0.16         1.57           72           40          8          5
## 1183        0.12         1.57           NA           NA        2.9         45
## 1184        0.16         1.57           80           19        6.4        138
## 1185        0.06         1.57           55           10        8.6         45
## 1186        0.04         1.57           64           25        7.9         53
## 1187        0.02         1.57           84           46        8.5         57
## 1188        0.17         1.56           NA           NA                    NA
## 1189        0.20         1.56           79           21        6.8         18
## 1190        0.10         1.56           84           32        8.1         41
## 1191        0.15         1.56           83           54        8.5        134
## 1192        0.15         1.56           38           10        5.7          7
## 1193        0.02         1.56           NA           NA                    NA
## 1194        0.15         1.56           NA           NA                    NA
## 1195        0.05         1.56           NA           NA                    NA
## 1196        0.03         1.56           NA           NA                    NA
## 1197        0.12         1.56           54           26          9        133
## 1198        0.00         1.56           NA           NA                    NA
## 1199        0.05         1.56           NA           NA                    NA
## 1200        0.16         1.55           58            9        tbd         NA
## 1201        0.15         1.55           73           14          7         13
## 1202        0.20         1.55           71           37        5.7         36
## 1203        0.07         1.55           86           39        8.5         31
## 1204        0.14         1.55           79           58          8         62
## 1205        0.03         1.55           NA           NA                    NA
## 1206        0.09         1.55           74           15        8.7         35
## 1207        0.15         1.55           89           25        6.9         49
## 1208        0.00         1.55           NA           NA                    NA
## 1209        0.24         1.55           79           73        8.1       1116
## 1210        0.15         1.55           74           79        7.8        458
## 1211        0.21         1.54           NA           NA        tbd         NA
## 1212        0.22         1.54           88           62        8.2        492
## 1213        0.19         1.54           80           27        8.2         99
## 1214        0.09         1.54           88           23          9        713
## 1215        0.14         1.54           69            6        8.1         14
## 1216        0.10         1.54           90           78          8        215
## 1217        0.24         1.54           NA           NA                    NA
## 1218        0.21         1.54           87           25        8.6         47
## 1219        0.10         1.54           NA           NA                    NA
## 1220        0.22         1.53           80           80        7.4        770
## 1221        0.14         1.53           64           28        7.8         13
## 1222        0.24         1.53           82           37        6.7        146
## 1223        0.05         1.53           NA           NA                    NA
## 1224        0.04         1.53           NA           NA                    NA
## 1225        0.25         1.53           89           35        7.9        781
## 1226        0.04         1.53           81           49          8         56
## 1227        0.10         1.53           NA           NA                    NA
## 1228        0.19         1.53           74           11        4.2       1635
## 1229        0.14         1.52           75           47        7.6        122
## 1230        0.06         1.52           NA           NA                    NA
## 1231        0.27         1.52           38           21          5         26
## 1232        0.12         1.52           83           77        8.9        712
## 1233        0.04         1.52           NA           NA                    NA
## 1234        0.01         1.52           NA           NA                    NA
## 1235        0.00         1.52           NA           NA                    NA
## 1236        0.04         1.52           NA           NA                    NA
## 1237        0.17         1.52           NA           NA                    NA
## 1238        0.03         1.52           NA           NA                    NA
## 1239        0.20         1.52           88           46        7.6         95
## 1240        0.04         1.52           87           34        8.5         51
## 1241        0.21         1.51           73           19        7.8         26
## 1242        0.15         1.51           NA           NA        7.8          5
## 1243        0.16         1.51           76           19        8.1         24
## 1244        0.13         1.51           90           83        8.6        679
## 1245        0.00         1.51           NA           NA                    NA
## 1246        0.14         1.51           NA           NA                    NA
## 1247        0.01         1.51           NA           NA                    NA
## 1248        0.11         1.51           NA           NA                    NA
## 1249        0.04         1.51           NA           NA                    NA
## 1250        1.13         1.51           68           10        8.2         27
## 1251        0.05         1.51           NA           NA                    NA
## 1252        0.17         1.51           69           17        7.3         18
## 1253        0.33         1.51           84           45          8        172
## 1254        0.23         1.51           85           89        8.6        984
## 1255        0.08         1.50           93           45        9.1        135
## 1256        0.26         1.50           80           43        6.9         92
## 1257        0.17         1.50           76           15        8.9         64
## 1258        0.04         1.50           NA           NA                    NA
## 1259        0.23         1.50           84           30        8.3         35
## 1260        0.20         1.50           91           25        7.7          7
## 1261        0.00         1.50           NA           NA                    NA
## 1262        0.02         1.50           NA           NA                    NA
## 1263        0.02         1.50           NA           NA                    NA
## 1264        0.05         1.50           NA           NA                    NA
## 1265        0.21         1.50           63           41        6.8        121
## 1266        0.04         1.50           NA           NA                    NA
## 1267        0.16         1.49           91           24        7.9         88
## 1268        0.04         1.49           80           55        8.1         94
## 1269        0.06         1.49           81           18        6.9         23
## 1270        0.27         1.49           67            4          7         24
## 1271        0.12         1.49           79           76        6.9        216
## 1272        0.06         1.49           NA           NA                    NA
## 1273        0.39         1.49           NA           NA                    NA
## 1274        0.26         1.49           75           61        7.7        297
## 1275        0.14         1.49           85           16        6.6        694
## 1276        0.24         1.49           NA           NA                    NA
## 1277        0.12         1.48           57           51        6.9        103
## 1278        0.02         1.48           NA           NA                    NA
## 1279        0.04         1.48           NA           NA                    NA
## 1280        0.05         1.48           NA           NA                    NA
## 1281        0.37         1.48           60           24        7.8         35
## 1282        0.18         1.48           NA           NA        6.5          4
## 1283        0.22         1.48           83           91        7.8        543
## 1284        0.13         1.48           68           12        5.5          4
## 1285        0.13         1.48           NA           NA        tbd         NA
## 1286        0.14         1.48           65           69        7.1         71
## 1287        0.19         1.48           82           19        7.4         20
## 1288        0.20         1.48           85           43          9         25
## 1289        0.13         1.48           75           43        7.8         42
## 1290        0.07         1.48           93           74        8.6         68
## 1291        0.11         1.47           NA           NA                    NA
## 1292        0.17         1.47           NA           NA        tbd         NA
## 1293        0.06         1.47           NA           NA        tbd         NA
## 1294        0.02         1.47           NA           NA                    NA
## 1295        0.26         1.47           33           58        4.8        479
## 1296        0.12         1.47           79           75        7.2        334
## 1297        0.10         1.47           86           67        8.8        264
## 1298        0.10         1.46           84           15        8.4        204
## 1299        0.06         1.46           NA           NA        tbd         NA
## 1300        0.11         1.46           81           53        8.2         46
## 1301        0.19         1.46           76           22        tbd         NA
## 1302        0.10         1.46           NA           NA                    NA
## 1303        0.01         1.46           NA           NA                    NA
## 1304        0.04         1.46           87           28        7.9         46
## 1305        0.20         1.46           85           65        7.9        129
## 1306        0.02         1.46           NA           NA                    NA
## 1307        0.10         1.46           NA           NA                    NA
## 1308        0.14         1.46           NA           NA                    NA
## 1309        0.04         1.46           76           38        8.6         41
## 1310        0.17         1.46           54           15        tbd         NA
## 1311        0.05         1.46           NA           NA                    NA
## 1312        0.15         1.46           83           70        7.7        263
## 1313        0.12         1.45           70           85          6        399
## 1314        0.07         1.45           85           53        8.6         73
## 1315        0.27         1.45           NA           NA        2.7         13
## 1316        0.19         1.45           73           42        7.8         70
## 1317        0.10         1.45           71           40        8.3         94
## 1318        0.01         1.45           NA           NA                    NA
## 1319        0.00         1.45           NA           NA                    NA
## 1320        0.00         1.45           NA           NA                    NA
## 1321        0.01         1.45           NA           NA                    NA
## 1322        0.01         1.45           NA           NA                    NA
## 1323        0.19         1.45           94           62        8.5       1081
## 1324        0.11         1.45           59           14        6.9         11
## 1325        0.02         1.45           NA           NA                    NA
## 1326        0.23         1.45           85           20        6.5        368
## 1327        0.15         1.44           NA           NA                    NA
## 1328        0.32         1.44           73           13        7.5          8
## 1329        0.02         1.44           NA           NA                    NA
## 1330        0.15         1.44           NA           NA                    NA
## 1331        0.13         1.44           74           38        6.5         79
## 1332        0.18         1.44           71            7        6.8          5
## 1333        0.09         1.44           88           30        8.2         20
## 1334        0.19         1.44           91           19        8.6         27
## 1335        0.11         1.43           61           59        5.7        180
## 1336        0.09         1.43           77            4        7.9          8
## 1337        0.13         1.43           71           41        6.8         48
## 1338        0.12         1.43           52           46          5         20
## 1339        0.16         1.43           65           26        7.6         10
## 1340        0.34         1.43           NA           NA                    NA
## 1341        0.03         1.43           NA           NA                    NA
## 1342        0.11         1.43           NA           NA        tbd         NA
## 1343        0.03         1.43           84           14        8.6         44
## 1344        0.09         1.43           NA           NA                    NA
## 1345        0.29         1.43           83           33          7        493
## 1346        0.13         1.43           63           12        7.5         11
## 1347        0.27         1.42           64           25        7.8         38
## 1348        0.20         1.42           94           51        8.7        881
## 1349        0.20         1.42           93           30        5.5       1849
## 1350        0.18         1.42           59            7        7.8         12
## 1351        0.02         1.42           NA           NA                    NA
## 1352        0.17         1.42           64           75        2.2       4572
## 1353        0.10         1.42           89           56          9        203
## 1354        0.19         1.42           80           36        8.9         45
## 1355        0.02         1.42           NA           NA                    NA
## 1356        0.00         1.42           NA           NA                    NA
## 1357        0.21         1.42           89           78        8.4        535
## 1358        0.14         1.42           81           18        8.7         34
## 1359        0.16         1.42           80           61        7.9        746
## 1360        0.05         1.42           NA           NA                    NA
## 1361        0.11         1.42           76           54        7.9        116
## 1362        0.02         1.41           77           33        7.3         15
## 1363        0.18         1.41           85           54        7.2         48
## 1364        0.04         1.41           NA           NA                    NA
## 1365        0.26         1.41           55           22          6        250
## 1366        0.05         1.41           NA           NA                    NA
## 1367        0.13         1.41           79           45        8.5         40
## 1368        0.12         1.41           NA           NA        tbd         NA
## 1369        0.14         1.41           NA           NA        2.5         31
## 1370        0.05         1.41           NA           NA                    NA
## 1371        0.17         1.41           NA           NA                    NA
## 1372        0.12         1.41           87           42        6.6        384
## 1373        0.05         1.41           91           15        8.4         98
## 1374        0.18         1.41           87           19        8.4         15
## 1375        0.13         1.40           87           76        8.1         86
## 1376        0.05         1.40           79           29        7.5         11
## 1377        0.32         1.40           83           11        8.6         26
## 1378        0.13         1.40           89           79        8.7        768
## 1379        0.93         1.40           NA           NA        6.5         38
## 1380        0.05         1.40           NA           NA                    NA
## 1381        0.12         1.40           72           13        6.1         14
## 1382        0.27         1.40           88           58        8.2         65
## 1383        0.06         1.40           79           30        8.4         34
## 1384        0.01         1.40           NA           NA                    NA
## 1385        0.22         1.40           NA           NA                    NA
## 1386        0.30         1.40           86           25        7.7         24
## 1387        0.11         1.40           86           85        8.2        977
## 1388        0.09         1.39           88            9          8          7
## 1389        0.03         1.39           NA           NA                    NA
## 1390        0.03         1.39           NA           NA                    NA
## 1391        0.02         1.39           NA           NA                    NA
## 1392        0.06         1.39           69           29        8.8         68
## 1393        0.13         1.39           NA           NA                    NA
## 1394        0.11         1.38           81           63        7.9        362
## 1395        0.26         1.38           85           49        6.4        241
## 1396        0.09         1.38           64           71        6.1        155
## 1397        0.11         1.38           NA           NA        7.1         12
## 1398        0.05         1.38           77           39        7.8         28
## 1399        0.14         1.38           NA           NA                    NA
## 1400        0.08         1.38           NA           NA                    NA
## 1401        0.13         1.38           60           77        6.1       1409
## 1402        0.14         1.38           86           21        7.3        279
## 1403        0.02         1.38           NA           NA                    NA
## 1404        0.11         1.38           86          102          8       1288
## 1405        0.07         1.38           NA           NA                    NA
## 1406        0.13         1.38           77           49        8.3        340
## 1407        0.18         1.38           81           21        8.1         18
## 1408        0.10         1.38           60            6        6.7          7
## 1409        0.76         1.37           77           12        8.4         16
## 1410        0.12         1.37           89           70        8.3        684
## 1411        0.09         1.37           NA           NA                    NA
## 1412        0.10         1.37           81           44        6.1         60
## 1413        0.12         1.37           80           25        5.8         87
## 1414        0.22         1.37           89           50        8.2        682
## 1415        0.05         1.37           86           67        8.6        140
## 1416        0.00         1.37           NA           NA                    NA
## 1417        0.33         1.37           65           17        6.9         32
## 1418        0.21         1.36           80           54        6.7        178
## 1419        0.26         1.36           78           45        7.1         52
## 1420        0.06         1.36           80           53        8.9         58
## 1421        0.15         1.36           68           65          6        160
## 1422        0.07         1.36           75           21        7.8         30
## 1423        0.13         1.36           83           21        5.9        371
## 1424        1.09         1.36           64           11        tbd         NA
## 1425        0.01         1.36           NA           NA                    NA
## 1426        0.00         1.36           NA           NA                    NA
## 1427        0.01         1.36           NA           NA                    NA
## 1428        0.17         1.36           73           20        8.9         36
## 1429        0.25         1.35           76           24        8.1         99
## 1430        0.09         1.35           NA           NA                    NA
## 1431        0.13         1.35           63           16        6.3          6
## 1432        0.03         1.35           NA           NA                    NA
## 1433        0.13         1.35           60           17        9.3          4
## 1434        0.14         1.35           88           68        6.9        279
## 1435        0.12         1.35           87           12          8        585
## 1436        0.25         1.35           82           63          8        318
## 1437        0.02         1.35           73           37        8.7         23
## 1438        0.10         1.35           81           52          6       3517
## 1439        0.07         1.35           NA           NA                    NA
## 1440        0.12         1.35           84           96        6.2        815
## 1441        0.09         1.35           NA           NA                    NA
## 1442        0.31         1.35           NA           NA                    NA
## 1443        0.39         1.35           79            7        7.4         15
## 1444        0.37         1.35           84            8        8.9         21
## 1445        0.09         1.35           NA           NA        4.3          4
## 1446        0.14         1.35           82           43        7.9         57
## 1447        0.18         1.34           73           19        7.4         23
## 1448        0.13         1.34           84           61          8        248
## 1449        0.21         1.34           81           32        7.9         93
## 1450        0.10         1.34           79           71        6.5        482
## 1451        0.12         1.34           84           72        7.5        533
## 1452        0.08         1.34           92           57        8.9        440
## 1453        0.14         1.34           84           56        7.3        147
## 1454        0.04         1.34           NA           NA                    NA
## 1455        0.06         1.34           88           71        7.4        116
## 1456        0.12         1.34           74           24        6.9        252
## 1457        0.26         1.34           84           46        7.8         83
## 1458        0.04         1.34           71           34        8.6         78
## 1459        0.04         1.34           80           49        8.3         30
## 1460        0.01         1.34           74           26        8.4         60
## 1461        0.10         1.34           79           76        7.1        187
## 1462        0.00         1.34           NA           NA                    NA
## 1463        0.24         1.34           NA           NA        3.5         22
## 1464        0.17         1.34           73           27        8.2         63
## 1465        0.18         1.34           84           50        8.1        203
## 1466        0.18         1.34           90           28        8.6         51
## 1467        0.00         1.33           NA           NA                    NA
## 1468        0.02         1.33           NA           NA                    NA
## 1469        0.13         1.33           83          100        8.1       1156
## 1470        0.05         1.33           NA           NA                    NA
## 1471        0.02         1.33           NA           NA                    NA
## 1472        0.05         1.33           NA           NA                    NA
## 1473        0.06         1.33           NA           NA                    NA
## 1474        0.09         1.33           NA           NA                    NA
## 1475        0.04         1.33           92           60        8.8        279
## 1476        0.21         1.33           NA           NA                    NA
## 1477        0.17         1.33           57           15        6.5         21
## 1478        0.20         1.33           74           27        7.3         41
## 1479        0.12         1.32           83           37        5.7         45
## 1480        0.14         1.32           93           85        8.3        280
## 1481        0.11         1.32           84           70        6.7         80
## 1482        1.18         1.32           91           47        7.5        930
## 1483        0.03         1.32           NA           NA                    NA
## 1484        0.11         1.32           NA           NA                    NA
## 1485        0.18         1.32           93           20        7.4         25
## 1486        0.24         1.32           70           71        7.2        318
## 1487        0.09         1.32           NA           NA                    NA
## 1488        0.13         1.32           NA           NA        tbd         NA
## 1489        0.01         1.32           NA           NA                    NA
## 1490        0.11         1.32           73           32        7.5         25
## 1491        0.24         1.32           74           36        8.5         38
## 1492        0.09         1.32           NA           NA                    NA
## 1493        0.17         1.31           NA           NA                    NA
## 1494        0.09         1.31           NA           NA                    NA
## 1495        0.16         1.31           NA           NA                    NA
## 1496        0.17         1.31           NA           NA        7.4         63
## 1497        0.20         1.31           81           37        6.2        353
## 1498        0.21         1.31           79           42          8         52
## 1499        0.07         1.31           69           25        7.4         25
## 1500        0.11         1.31           91           13        9.2       3963
## 1501        0.07         1.31           NA           NA                    NA
## 1502        0.02         1.31           NA           NA                    NA
## 1503        0.17         1.31           61           20        7.3         27
## 1504        0.12         1.31           78           83        7.8        356
## 1505        0.04         1.31           94           76        7.2        139
## 1506        0.11         1.30           89           76        8.6        127
## 1507        0.01         1.30           NA           NA                    NA
## 1508        0.02         1.30           NA           NA                    NA
## 1509        0.17         1.30           63           12          6         39
## 1510        0.10         1.30           78           83        8.5        376
## 1511        0.11         1.30           80           35        6.6         38
## 1512        1.02         1.30           78           22        8.3          6
## 1513        0.01         1.30           NA           NA                    NA
## 1514        0.05         1.30           NA           NA                    NA
## 1515        0.12         1.30           80           59          7        132
## 1516        0.11         1.30           78           22        6.1        402
## 1517        0.08         1.30           NA           NA                    NA
## 1518        0.19         1.29           NA           NA        7.3        113
## 1519        0.05         1.29           68           25        8.2         25
## 1520        0.19         1.29           75           24        7.7         33
## 1521        0.03         1.29           NA           NA                    NA
## 1522        0.04         1.29           NA           NA                    NA
## 1523        0.13         1.29           NA           NA                    NA
## 1524        0.21         1.29           85           54        7.2        406
## 1525        0.02         1.29           49           10        6.2          5
## 1526        0.07         1.29           NA           NA                    NA
## 1527        0.09         1.29           67           19        5.9          8
## 1528        0.09         1.29           56            4          5          5
## 1529        0.16         1.29           75           51        8.6         27
## 1530        0.12         1.29           74           26        7.8        387
## 1531        0.10         1.29           84           38        5.4       7512
## 1532        0.12         1.29           79           26        7.9         66
## 1533        0.20         1.29           72           53        7.5        292
## 1534        0.13         1.29           66           32        7.6         30
## 1535        0.01         1.29           NA           NA                    NA
## 1536        0.09         1.28           NA           NA        8.4         13
## 1537        0.12         1.28           77           11        8.4        613
## 1538        0.16         1.28           85           51        8.4         57
## 1539        0.27         1.28           73            5        7.4         10
## 1540        0.00         1.28           NA           NA                    NA
## 1541        0.04         1.28           NA           NA                    NA
## 1542        0.14         1.28           NA           NA        tbd         NA
## 1543        0.04         1.28           NA           NA                    NA
## 1544        0.16         1.28           76           47        8.3        136
## 1545        0.15         1.28           67           21        7.3         26
## 1546        0.16         1.28           89           34        8.9        557
## 1547        0.08         1.27           93           12        9.4        358
## 1548        0.10         1.27           73           16        7.2         19
## 1549        0.11         1.27           69            8        7.2         26
## 1550        0.00         1.27           76           31        6.6         71
## 1551        0.15         1.27           91           69        8.1       1107
## 1552        0.07         1.27           83           75        8.7        487
## 1553        0.07         1.27           59           46        6.3        134
## 1554        0.52         1.27           77            8        8.9         17
## 1555        0.08         1.27           NA           NA                    NA
## 1556        0.01         1.27           NA           NA                    NA
## 1557        0.11         1.27           84           32        7.2         44
## 1558        0.05         1.27           85           33        9.1         26
## 1559        0.02         1.27           NA           NA                    NA
## 1560        0.18         1.27           75           70        6.2       1311
## 1561        0.12         1.27           65           28        tbd         NA
## 1562        0.13         1.27           75           35        8.5         60
## 1563        0.11         1.27           30            4          2         23
## 1564        0.13         1.27           86           60        8.6        433
## 1565        0.12         1.27           71           52        6.3         89
## 1566        0.03         1.27           57           27        7.9        139
## 1567        0.16         1.27           NA           NA                    NA
## 1568        0.08         1.27           69            4        6.3          4
## 1569        0.11         1.27           78           46          8        110
## 1570        0.16         1.27           85           50        8.5        332
## 1571        0.19         1.27           80            6        4.9        123
## 1572        0.11         1.26           79            8        8.1         22
## 1573        0.15         1.26           68           36        5.8         21
## 1574        0.08         1.26           NA           NA                    NA
## 1575        0.25         1.26           85           23        8.4         77
## 1576        0.10         1.26           NA           NA                    NA
## 1577        0.11         1.26           NA           NA                    NA
## 1578        0.04         1.26           NA           NA                    NA
## 1579        0.01         1.26           59           20        7.7          6
## 1580        0.22         1.26           75           42        7.2        166
## 1581        0.14         1.25           NA           NA                    NA
## 1582        0.11         1.25           65           29        8.9         51
## 1583        0.08         1.25           86           10          8          6
## 1584        0.19         1.25           76           26        6.3        278
## 1585        0.75         1.25           68            7        7.4         33
## 1586        0.01         1.25           NA           NA                    NA
## 1587        0.11         1.25           NA           NA          5        332
## 1588        0.13         1.25           63           64        6.9        223
## 1589        0.00         1.25           NA           NA                    NA
## 1590        0.00         1.25           NA           NA                    NA
## 1591        0.04         1.25           NA           NA                    NA
## 1592        0.10         1.25           83           54        8.5        134
## 1593        0.03         1.25           64           27        8.3         74
## 1594        0.16         1.25           79           62        8.4        194
## 1595        0.22         1.25           86           32        7.6         81
## 1596        0.27         1.25           88           71        8.6        348
## 1597        0.08         1.25           69           44        8.8        190
## 1598        0.00         1.25           74           22        8.5        135
## 1599        0.14         1.25           NA           NA                    NA
## 1600        0.16         1.25           52           37        6.2        106
## 1601        0.17         1.25           87           45        8.6         34
## 1602        0.04         1.25           NA           NA                    NA
## 1603        0.14         1.24           81           51        8.9        155
## 1604        0.12         1.24           52           15        6.8          4
## 1605        0.16         1.24           87           29        8.3         90
## 1606        0.06         1.24           85           10          9         96
## 1607        0.06         1.24           78           20        7.7          6
## 1608        0.55         1.24           78            9        6.9         34
## 1609        0.03         1.24           NA           NA                    NA
## 1610        0.12         1.24           76            8        7.8         13
## 1611        0.04         1.24           61           44        8.1         54
## 1612        0.19         1.24           79           53        7.7        308
## 1613        0.09         1.24           NA           NA                    NA
## 1614        0.23         1.23           76           36        6.4         66
## 1615        0.16         1.23           32            6        4.6         29
## 1616        0.13         1.23           83           30        5.9         39
## 1617        0.04         1.23           91           89        8.8        152
## 1618        0.11         1.23           NA           NA                    NA
## 1619        0.07         1.23           70           16        8.1         19
## 1620        0.16         1.23           57           51        5.5        102
## 1621        0.28         1.23           63           38        7.2         69
## 1622        0.08         1.23           NA           NA                    NA
## 1623        0.18         1.23           NA           NA                    NA
## 1624        0.11         1.23           80           49        8.5         73
## 1625        0.02         1.23           NA           NA                    NA
## 1626        0.02         1.23           NA           NA        7.3          6
## 1627        0.08         1.23           NA           NA                    NA
## 1628        0.10         1.23           76           81        8.3        662
## 1629        0.01         1.23           NA           NA                    NA
## 1630        0.04         1.23           80           22        9.1         37
## 1631        0.10         1.23           70           59        6.7         48
## 1632        0.02         1.23           NA           NA                    NA
## 1633        0.20         1.23           75           31        7.3         42
## 1634        0.13         1.23           63            6        7.7          9
## 1635        0.22         1.23           82           56        7.8         57
## 1636        0.09         1.22           78           65        8.2        468
## 1637        0.09         1.22           63           39        7.5         27
## 1638        0.03         1.22           80           43        8.5         48
## 1639        0.02         1.22           NA           NA                    NA
## 1640        0.02         1.22           NA           NA                    NA
## 1641        0.04         1.22           NA           NA                    NA
## 1642        0.04         1.22           NA           NA                    NA
## 1643        0.15         1.22           NA           NA                    NA
## 1644        0.03         1.22           NA           NA                    NA
## 1645        0.08         1.22           NA           NA                    NA
## 1646        0.07         1.22           86           29        9.5        150
## 1647        0.08         1.22           NA           NA                    NA
## 1648        0.05         1.22           89           24        8.3         61
## 1649        0.08         1.22           NA           NA                    NA
## 1650        0.15         1.22           89           19        7.8         16
## 1651        0.16         1.22           84           16        8.7         17
## 1652        0.16         1.21           71           30        8.4         12
## 1653        0.04         1.21           70           28        6.9         16
## 1654        0.04         1.21           73           55        7.8         22
## 1655        0.05         1.21           85           52        7.7        164
## 1656        0.10         1.21           69           22        8.5        111
## 1657        0.09         1.21           85           69        8.1        206
## 1658        0.04         1.21           86           41        8.6        184
## 1659        0.20         1.21           73           47        7.4        237
## 1660        0.06         1.21           NA           NA                    NA
## 1661        0.10         1.21           86           13          9         91
## 1662        0.03         1.21           NA           NA                    NA
## 1663        0.01         1.21           NA           NA                    NA
## 1664        0.03         1.21           83           24          9         45
## 1665        0.18         1.21           76           34        8.3        130
## 1666        0.25         1.21           75           16        7.6         39
## 1667        0.11         1.21           71           27        5.1        299
## 1668        0.02         1.21           NA           NA                    NA
## 1669        0.16         1.21           87           54        7.7        355
## 1670        0.08         1.21           NA           NA                    NA
## 1671        0.12         1.21           85           61        8.6        105
## 1672        0.00         1.20           NA           NA                    NA
## 1673        0.15         1.20           59           19        5.1         20
## 1674        0.14         1.20           73           19        8.2         10
## 1675        0.31         1.20           NA           NA                    NA
## 1676        0.16         1.20           78           37        8.4         16
## 1677        0.24         1.20           82           36        7.1         55
## 1678        0.07         1.20           NA           NA                    NA
## 1679        0.03         1.20           90           54        9.1        137
## 1680        0.02         1.20           NA           NA                    NA
## 1681        0.04         1.20           NA           NA                    NA
## 1682        0.00         1.20           NA           NA                    NA
## 1683        0.00         1.20           NA           NA                    NA
## 1684        0.00         1.20           NA           NA                    NA
## 1685        0.04         1.20           65           33        7.1         75
## 1686        0.20         1.20           70           17          7          4
## 1687        0.15         1.20           92           22        8.5         26
## 1688        0.36         1.20           68            6        5.4          9
## 1689        0.08         1.19           NA           NA                    NA
## 1690        0.02         1.19           55           14        6.8          9
## 1691        0.19         1.19           81           28        7.5         81
## 1692        0.09         1.19           81           78        8.6        377
## 1693        0.04         1.19           71            4        7.7          7
## 1694        0.15         1.19           83           19        8.4         43
## 1695        0.12         1.19           89           11        5.2        393
## 1696        0.16         1.19           75           46        8.6        113
## 1697        0.02         1.19           NA           NA                    NA
## 1698        0.01         1.19           NA           NA                    NA
## 1699        0.04         1.19           NA           NA                    NA
## 1700        0.05         1.19           84           23          8         19
## 1701        0.11         1.19           NA           NA        tbd         NA
## 1702        0.28         1.19           68           11        7.8         15
## 1703        0.04         1.19           76           14        7.3         11
## 1704        0.02         1.19           NA           NA                    NA
## 1705        0.07         1.19           76           32        7.9         17
## 1706        0.08         1.18           87           54        8.2        147
## 1707        0.08         1.18           NA           NA                    NA
## 1708        0.11         1.18           59            4        tbd         NA
## 1709        0.09         1.18           NA           NA                    NA
## 1710        0.01         1.18           NA           NA                    NA
## 1711        0.20         1.18           78           37        7.9        282
## 1712        0.06         1.18           NA           NA                    NA
## 1713        0.04         1.18           88            9        9.4        201
## 1714        0.00         1.18           NA           NA                    NA
## 1715        0.09         1.18           77           23        7.7         36
## 1716        0.02         1.18           95           16        7.5         22
## 1717        0.08         1.18           64           33        6.5         55
## 1718        0.02         1.18           NA           NA                    NA
## 1719        0.08         1.17           NA           NA                    NA
## 1720        0.16         1.17           77           43        8.7         70
## 1721        0.15         1.17           70           14        8.8         60
## 1722        0.10         1.17           52           36        4.9        222
## 1723        0.00         1.17           NA           NA                    NA
## 1724        0.29         1.17           76            8        7.6         11
## 1725        0.06         1.17           62           22        7.2         36
## 1726        0.17         1.17           72           28        6.9         80
## 1727        0.18         1.17           NA           NA                    NA
## 1728        0.00         1.17           NA           NA                    NA
## 1729        0.03         1.17           NA           NA                    NA
## 1730        0.15         1.17           57            4        8.4         37
## 1731        0.09         1.17           96           57        7.9       3756
## 1732        0.14         1.17           84           39        8.6       2754
## 1733        0.08         1.17           NA           NA                    NA
## 1734        0.20         1.17           81           38        8.1         55
## 1735        0.08         1.17           NA           NA                    NA
## 1736        0.05         1.17           65           23        5.8         28
## 1737        0.15         1.17           74           43        7.3        118
## 1738        0.08         1.17           84           75        5.3       1711
## 1739        0.08         1.17           NA           NA                    NA
## 1740        0.02         1.17           81           43          8         31
## 1741        0.19         1.16           76           36        7.3         34
## 1742        0.16         1.16           85           19        8.9         53
## 1743        0.15         1.16           70           31        6.3         24
## 1744        0.08         1.16           83           13        7.9         16
## 1745        0.13         1.16           79           82        7.6        328
## 1746        0.66         1.16           43           17        4.1        176
## 1747        0.15         1.16           85           17        8.5         22
## 1748        0.05         1.16           NA           NA                    NA
## 1749        0.02         1.16           NA           NA                    NA
## 1750        0.02         1.16           NA           NA                    NA
## 1751        0.01         1.16           NA           NA                    NA
## 1752        0.08         1.16           NA           NA                    NA
## 1753        0.10         1.16           77           13        7.6         21
## 1754        0.09         1.16           88           22        5.8        328
## 1755        0.16         1.16           88           41          8        238
## 1756        0.05         1.16           NA           NA                    NA
## 1757        0.12         1.16           45           39        5.8         89
## 1758        0.12         1.15           78           32        8.2         66
## 1759        0.01         1.15           83           29        8.1         30
## 1760        0.15         1.15           73           15        8.3         30
## 1761        0.25         1.15           69           20        7.3         30
## 1762        0.15         1.15           43            5        3.4         13
## 1763        0.10         1.15           NA           NA                    NA
## 1764        0.21         1.15           86           37        6.7        228
## 1765        0.01         1.15           NA           NA                    NA
## 1766        0.10         1.15           53           43        5.4        437
## 1767        0.03         1.15           NA           NA                    NA
## 1768        0.00         1.15           NA           NA                    NA
## 1769        0.00         1.15           NA           NA                    NA
## 1770        0.13         1.15           NA           NA                    NA
## 1771        0.31         1.15           83            9        7.9         14
## 1772        0.03         1.15           76           55        8.3         21
## 1773        0.03         1.15           92           40        8.5       2360
## 1774        0.00         1.15           NA           NA                    NA
## 1775        0.15         1.15           68           28          9         28
## 1776        0.19         1.15           62           44        5.1        164
## 1777        0.07         1.15           NA           NA                    NA
## 1778        0.07         1.15           NA           NA                    NA
## 1779        0.07         1.14           51            8        tbd         NA
## 1780        0.11         1.14           79           33        8.4         38
## 1781        0.13         1.14           91           77        9.1        933
## 1782        0.07         1.14           81           12        8.5         17
## 1783        0.16         1.14           88           46        7.5        155
## 1784        0.19         1.14           74           22        7.5        121
## 1785        0.07         1.14           56           36        7.1         50
## 1786        0.19         1.14           65           42        6.6         47
## 1787        0.16         1.14           76           27          9         21
## 1788        0.03         1.14           NA           NA                    NA
## 1789        0.04         1.14           NA           NA                    NA
## 1790        0.02         1.14           NA           NA                    NA
## 1791        0.03         1.14           NA           NA                    NA
## 1792        0.02         1.14           NA           NA                    NA
## 1793        0.05         1.14           84           31        9.1         31
## 1794        0.02         1.14           NA           NA                    NA
## 1795        0.04         1.14           81           66        8.8         32
## 1796        0.62         1.14           NA           NA                    NA
## 1797        0.18         1.14           NA           NA        7.4         17
## 1798        0.12         1.14           NA           NA                    NA
## 1799        0.10         1.14           81           89        7.7       1137
## 1800        0.03         1.14           73           15        8.8         32
## 1801        0.03         1.14           NA           NA                    NA
## 1802        0.17         1.14           79           60        8.2        201
## 1803        0.03         1.13           87           32          8         47
## 1804        0.10         1.13           80           15        tbd         NA
## 1805        0.07         1.13           NA           NA                    NA
## 1806        0.02         1.13           50            8        4.7          6
## 1807        0.18         1.13           83           88        7.8        621
## 1808        0.09         1.13           67           25        6.1         31
## 1809        0.02         1.13           84           55        8.6         14
## 1810        0.01         1.13           NA           NA                    NA
## 1811        0.22         1.13           79           66        7.8        362
## 1812        0.11         1.13           85           69        6.8        108
## 1813        0.17         1.13           79           50        8.1        795
## 1814        0.07         1.13           NA           NA                    NA
## 1815        0.06         1.13           73           51        8.6        209
## 1816        0.02         1.13           NA           NA                    NA
## 1817        0.12         1.13           82           48        5.9         15
## 1818        0.08         1.12           73           73        7.6        179
## 1819        0.01         1.12           NA           NA                    NA
## 1820        0.14         1.12           57           15        7.6          9
## 1821        0.02         1.12           NA           NA                    NA
## 1822        0.14         1.12           78           50        8.3         32
## 1823        0.16         1.12           82           85        8.4        201
## 1824        0.08         1.12           82           44        8.6         63
## 1825        0.15         1.12           80           27        8.3         52
## 1826        0.05         1.12           78           46        5.1         27
## 1827        0.02         1.12           NA           NA                    NA
## 1828        0.08         1.12           77           30        8.2         62
## 1829        0.54         1.12           71            4        2.6         10
## 1830        0.00         1.12           86           15          8         19
## 1831        0.08         1.12           79           77        8.1        165
## 1832        0.15         1.12           93           61        9.2       1228
## 1833        0.04         1.12           83           60        8.3         40
## 1834        0.10         1.12           70           91          6        202
## 1835        0.15         1.12           88           60        8.7         59
## 1836        0.09         1.11           79           75        4.5       2380
## 1837        0.04         1.11           74           38        7.6         51
## 1838        0.11         1.11           NA           NA                    NA
## 1839        0.15         1.11           69           50        6.3         31
## 1840        0.18         1.11           84           52        7.3         95
## 1841        0.35         1.11           82            8        6.8         13
## 1842        0.05         1.11           94           70          9        160
## 1843        0.03         1.11           NA           NA                    NA
## 1844        0.01         1.11           NA           NA                    NA
## 1845        0.01         1.11           NA           NA                    NA
## 1846        0.07         1.11           NA           NA                    NA
## 1847        0.07         1.11           87           79        8.7        664
## 1848        0.10         1.11           75           43        7.7        100
## 1849        0.16         1.11           69           50        7.7        598
## 1850        0.23         1.11           NA           NA                    NA
## 1851        0.01         1.10           NA           NA                    NA
## 1852        0.01         1.10           NA           NA                    NA
## 1853        0.15         1.10           85           62          8        468
## 1854        0.07         1.10           NA           NA                    NA
## 1855        0.08         1.10           81           23        7.4         29
## 1856        0.00         1.10           NA           NA                    NA
## 1857        0.00         1.10           NA           NA                    NA
## 1858        0.00         1.10           NA           NA                    NA
## 1859        0.03         1.10           NA           NA                    NA
## 1860        0.02         1.10           NA           NA                    NA
## 1861        0.00         1.10           NA           NA                    NA
## 1862        0.15         1.10           NA           NA                    NA
## 1863        0.13         1.10           74           18        tbd         NA
## 1864        0.23         1.10           76           25        tbd         NA
## 1865        0.25         1.10           NA           NA                    NA
## 1866        0.04         1.10           86           60        8.5        176
## 1867        0.08         1.10           80           66        8.2        283
## 1868        0.12         1.10           61           16        6.9         14
## 1869        0.20         1.10           87           39        8.1        109
## 1870        0.12         1.10           73           54        6.7         77
## 1871        0.02         1.10           80           13        8.5         44
## 1872        0.12         1.10           NA           NA        tbd         NA
## 1873        0.08         1.09           77           18        5.8         74
## 1874        0.16         1.09           77           34        8.1         52
## 1875        0.17         1.09           86           54        5.7         87
## 1876        0.02         1.09           75           21        8.9         39
## 1877        0.09         1.09           66           13        4.4          7
## 1878        0.02         1.09           97           22          6         47
## 1879        0.02         1.09           NA           NA                    NA
## 1880        0.22         1.09           68           51        7.6         58
## 1881        0.16         1.09           83           37        6.6        363
## 1882        0.05         1.09           92           27        8.3         48
## 1883        0.10         1.09           54           51        6.9        198
## 1884        0.15         1.09           75           56        8.3         99
## 1885        0.09         1.09           47           52        2.1         98
## 1886        0.14         1.09           65           32        8.3         33
## 1887        0.07         1.09           NA           NA                    NA
## 1888        0.18         1.09           74           42        6.9         41
## 1889        0.10         1.09           66            8        tbd         NA
## 1890        0.07         1.09           76           20        5.5         65
## 1891        0.09         1.09           84           70          8         72
## 1892        0.07         1.09           NA           NA                    NA
## 1893        0.14         1.08           88           15        8.9         77
## 1894        0.14         1.08           NA           NA        6.6         41
## 1895        0.10         1.08           NA           NA        tbd         NA
## 1896        0.16         1.08           73           28        7.2          9
## 1897        0.14         1.08           NA           NA        tbd         NA
## 1898        0.10         1.08           90           62        6.9       2981
## 1899        0.20         1.08           85           47        7.4         67
## 1900        0.13         1.08           75           69        7.5        265
## 1901        0.16         1.08           NA           NA                    NA
## 1902        0.01         1.08           NA           NA                    NA
## 1903        0.10         1.08           58           21          6         19
## 1904        0.13         1.08           NA           NA                    NA
## 1905        0.08         1.08           91           90        7.4        594
## 1906        0.10         1.08           NA           NA                    NA
## 1907        0.07         1.08           NA           NA                    NA
## 1908        0.24         1.08           70           10        8.1         49
## 1909        0.02         1.08           40           23        6.1         22
## 1910        0.02         1.08           NA           NA                    NA
## 1911        0.03         1.08           67           59        8.1        106
## 1912        0.09         1.08           69            6        7.3        121
## 1913        0.30         1.07           59            7        6.7         15
## 1914        0.07         1.07           NA           NA                    NA
## 1915        0.08         1.07           47            9          5         38
## 1916        0.15         1.07           82           14        7.4         83
## 1917        0.12         1.07           73           17        7.3          8
## 1918        0.10         1.07           NA           NA        tbd         NA
## 1919        0.17         1.07           85           59        7.3        245
## 1920        0.09         1.07           NA           NA                    NA
## 1921        0.02         1.07           NA           NA                    NA
## 1922        0.54         1.07           NA           NA        7.7         31
## 1923        0.09         1.07           NA           NA                    NA
## 1924        0.07         1.07           NA           NA                    NA
## 1925        0.11         1.07           76           57        6.6        198
## 1926        0.07         1.07           NA           NA                    NA
## 1927        0.05         1.07           76           29        7.8         36
## 1928        0.05         1.07           86           57        8.4         96
## 1929        0.11         1.07           88           44        8.8         57
## 1930        0.11         1.07           60            5        tbd         NA
## 1931        0.07         1.07           NA           NA                    NA
## 1932        0.34         1.07           70           31        5.6          5
## 1933        0.15         1.07           75           32        8.6         95
## 1934        0.10         1.07           NA           NA        7.6         18
## 1935        0.11         1.07           66           62        5.9        552
## 1936        0.07         1.07           NA           NA                    NA
## 1937        0.07         1.06           NA           NA                    NA
## 1938        0.14         1.06           75           43        8.5         84
## 1939        0.14         1.06           81           25        7.3         14
## 1940        0.27         1.06           90           77        7.3        146
## 1941        0.10         1.06           65           20        6.5         21
## 1942        0.21         1.06           89           21        8.4        188
## 1943        0.07         1.06           NA           NA                    NA
## 1944        0.11         1.06           84           72          8         42
## 1945        0.11         1.06           80           56        8.3        154
## 1946        0.14         1.06           89           36        8.7         37
## 1947        0.08         1.06           NA           NA                    NA
## 1948        0.14         1.06           71           28        8.3         22
## 1949        0.10         1.06           91           18        5.6        668
## 1950        0.01         1.06           NA           NA                    NA
## 1951        0.01         1.06           NA           NA                    NA
## 1952        0.11         1.06           64           64        7.3        247
## 1953        0.20         1.06           77           21        6.3         18
## 1954        0.00         1.06           87           21        9.1        639
## 1955        0.09         1.06           72           42        8.1         61
## 1956        0.02         1.06           65           12        7.7          6
## 1957        0.14         1.06           63            9        8.8         10
## 1958        0.10         1.06           83           81        7.9        292
## 1959        0.10         1.06           72           69        7.2        152
## 1960        0.09         1.06           NA           NA        6.8         73
## 1961        0.17         1.06           84           50        8.4        183
## 1962        0.20         1.06           87           52        7.1        122
## 1963        0.13         1.05           71           24          7         16
## 1964        0.23         1.05           83           32          8         32
## 1965        0.08         1.05           75           22        6.9         36
## 1966        0.01         1.05           NA           NA                    NA
## 1967        0.09         1.05           75           55          8         60
## 1968        0.13         1.05           81           31          9         36
## 1969        0.01         1.05           NA           NA                    NA
## 1970        0.07         1.05           44            5        tbd         NA
## 1971        0.13         1.05           NA           NA                    NA
## 1972        0.00         1.05           NA           NA                    NA
## 1973        0.01         1.05           NA           NA                    NA
## 1974        0.00         1.05           NA           NA                    NA
## 1975        0.13         1.05           89           21          8         22
## 1976        0.19         1.05           82           16        8.3         85
## 1977        0.01         1.05           61           17        8.3          6
## 1978        0.03         1.05           82           14        8.4          5
## 1979        0.17         1.05           70           57        6.1        279
## 1980        0.02         1.05           92           73        7.6        213
## 1981        0.21         1.05           80           35        7.9         32
## 1982        0.07         1.05           83            6                    NA
## 1983        0.13         1.04           81           22        8.9         17
## 1984        0.11         1.04           NA           NA        7.4          5
## 1985        0.07         1.04           91           17          9        132
## 1986        0.10         1.04           80           59        8.4         36
## 1987        0.07         1.04           NA           NA                    NA
## 1988        0.19         1.04           83           40        7.7        645
## 1989        0.07         1.04           42            9        tbd         NA
## 1990        0.07         1.04           NA           NA                    NA
## 1991        0.03         1.04           74           22        8.9         39
## 1992        0.14         1.04           73           25        8.7          6
## 1993        0.18         1.04           65           57        7.3        168
## 1994        0.03         1.04           NA           NA                    NA
## 1995        0.03         1.04           NA           NA                    NA
## 1996        0.12         1.04           86           19        8.5         22
## 1997        0.11         1.04           46           38        4.4        455
## 1998        0.11         1.04           NA           NA                    NA
## 1999        0.05         1.04           83           32        8.8         29
## 2000        0.11         1.03           71           52        7.7         71
## 2001        0.23         1.03           81           23        7.5         54
## 2002        0.09         1.03           68           85        5.8        404
## 2003        0.14         1.03           79           30        8.4         17
## 2004        0.23         1.03           88           56        7.9        102
## 2005        0.13         1.03           86           30        7.4         92
## 2006        0.09         1.03           73           54          7         31
## 2007        0.19         1.03           84           29        8.1         41
## 2008        0.07         1.03           75           48        7.6         33
## 2009        0.11         1.03           67           12          7          8
## 2010        0.13         1.03           82           16        8.8         12
## 2011        0.04         1.03           NA           NA                    NA
## 2012        0.00         1.03           NA           NA                    NA
## 2013        0.09         1.03           86           74        8.4        329
## 2014        0.17         1.03           77           36        7.7         30
## 2015        0.00         1.03           86           18        8.5       3552
## 2016        0.02         1.03           93           12        8.5         46
## 2017        0.10         1.03           78           28        8.6         28
## 2018        0.09         1.03           NA           NA        tbd         NA
## 2019        0.29         1.02           79           58        8.8         39
## 2020        0.11         1.02           65           13        6.1         26
## 2021        0.09         1.02           NA           NA        tbd         NA
## 2022        0.08         1.02           72           24          7         22
## 2023        0.09         1.02           72           27        8.4         61
## 2024        0.03         1.02           70           25        6.4         14
## 2025        0.11         1.02           90           17        6.2         91
## 2026        0.08         1.02           86           58        8.1         89
## 2027        0.14         1.02           54           24        7.9        130
## 2028        0.02         1.02           NA           NA                    NA
## 2029        0.07         1.02           NA           NA                    NA
## 2030        0.10         1.02           61           11          6          5
## 2031        0.12         1.02           48            6        3.3          4
## 2032        0.09         1.02           71           41        7.4         25
## 2033        0.11         1.02           NA           NA          9          4
## 2034        0.08         1.02           84           83        7.6        439
## 2035        0.17         1.02           83           31        5.3         33
## 2036        0.03         1.02           83           27        8.7          6
## 2037        0.09         1.02           66           29        6.9        108
## 2038        0.08         1.02           92           10        7.7         45
## 2039        0.13         1.02           70           29        8.7         29
## 2040        0.04         1.02           80           40        8.2         89
## 2041        0.11         1.01           51           18        3.6          8
## 2042        0.07         1.01           NA           NA                    NA
## 2043        0.11         1.01           74           23          8         27
## 2044        0.09         1.01           NA           NA        tbd         NA
## 2045        0.06         1.01           80           54        7.9        101
## 2046        0.11         1.01           64           19        6.1         38
## 2047        0.02         1.01           NA           NA                    NA
## 2048        0.08         1.01           NA           NA                    NA
## 2049        0.22         1.01           NA           NA                    NA
## 2050        0.10         1.01           81           74          8        302
## 2051        0.09         1.01           72           32        7.3        318
## 2052        0.16         1.01           90           16        8.5        525
## 2053        0.00         1.01           NA           NA                    NA
## 2054        0.10         1.01           81           73          7        189
## 2055        0.07         1.01           86            5        8.3         10
## 2056        0.08         1.01           77           70        7.7        758
## 2057        0.08         1.01           76           74          8        273
## 2058        0.13         1.00           51            5          8          8
## 2059        0.07         1.00           NA           NA                    NA
## 2060        0.07         1.00           67           12        4.5          6
## 2061        0.21         1.00           86           73        8.4        255
## 2062        0.08         1.00           NA           NA                    NA
## 2063        0.00         1.00           NA           NA                    NA
## 2064        0.03         1.00           NA           NA                    NA
## 2065        0.01         1.00           NA           NA                    NA
## 2066        0.02         1.00           NA           NA                    NA
## 2067        0.00         1.00           NA           NA                    NA
## 2068        0.00         1.00           92           39        8.9         54
## 2069        0.09         1.00           NA           NA                    NA
## 2070        0.00         1.00           NA           NA                    NA
## 2071        0.07         1.00           NA           NA                    NA
## 2072        0.07         1.00           73           10        tbd         NA
## 2073        0.07         1.00           NA           NA                    NA
## 2074        0.03         1.00           72           16        9.3         54
## 2075        0.17         1.00           87           43        8.4        238
## 2076        0.07         1.00           NA           NA                    NA
## 2077        0.04         0.99           79           24        8.5         10
## 2078        0.10         0.99           79           16        7.8         33
## 2079        0.06         0.99           82           25        6.6         49
## 2080        0.03         0.99           NA           NA                    NA
## 2081        0.08         0.99           85           60        7.6         88
## 2082        0.05         0.99           83           46        8.6         55
## 2083        0.15         0.99           55           65        6.5        294
## 2084        0.06         0.99           88           13        9.1         69
## 2085        0.08         0.99           66           20          8         35
## 2086        0.19         0.99           87           63        8.2         94
## 2087        0.11         0.99           70           39          5         26
## 2088        0.03         0.99           51           22        6.6        120
## 2089        0.08         0.99           70           35        8.2         20
## 2090        0.03         0.99           78           48        8.1         84
## 2091        0.19         0.99           75           26        8.3         30
## 2092        0.09         0.99           89           66        8.4       1106
## 2093        0.09         0.99           58            7        tbd         NA
## 2094        0.04         0.99           71            5        tbd         NA
## 2095        0.19         0.98           79           26        8.7         43
## 2096        0.25         0.98           80           17        6.8         11
## 2097        0.10         0.98           NA           NA        tbd         NA
## 2098        0.14         0.98           NA           NA                    NA
## 2099        0.11         0.98           75           21        6.2         17
## 2100        0.07         0.98           77           55        8.2        336
## 2101        0.08         0.98           91           48        7.9       3450
## 2102        0.02         0.98           54           27        5.4         34
## 2103        0.02         0.98           NA           NA                    NA
## 2104        0.08         0.98           44           19        6.6         25
## 2105        0.01         0.98           NA           NA                    NA
## 2106        0.11         0.98           59           13        5.9         18
## 2107        0.01         0.98           NA           NA                    NA
## 2108        0.08         0.98           78           68        6.4        694
## 2109        0.08         0.98           86           23        7.7        113
## 2110        0.16         0.98           NA           NA                    NA
## 2111        0.08         0.98           82           58        7.5        383
## 2112        0.10         0.98           NA           NA        7.2          6
## 2113        0.08         0.97           82           46        7.6         34
## 2114        0.03         0.97           87           38        8.3         27
## 2115        0.10         0.97           NA           NA        5.1         12
## 2116        0.04         0.97           93           47        8.9       1841
## 2117        0.08         0.97           81           31        5.3         33
## 2118        0.01         0.97           88           31        9.2        144
## 2119        0.09         0.97           82           88          8        268
## 2120        0.16         0.97           75           21        5.9         47
## 2121        0.01         0.97           66            9        tbd         NA
## 2122        0.12         0.97           85           19        7.6         53
## 2123        0.13         0.97           75           37        7.9         67
## 2124        0.09         0.97           NA           NA                    NA
## 2125        0.06         0.97           NA           NA        7.6          5
## 2126        0.04         0.97           81           34        8.7         23
## 2127        0.12         0.97           89           23        5.5       5926
## 2128        0.07         0.97           54           17        2.1         11
## 2129        0.09         0.97           79           20        6.6         15
## 2130        0.00         0.97           NA           NA                    NA
## 2131        0.10         0.97           78           35        5.2         53
## 2132        0.01         0.97           NA           NA                    NA
## 2133        0.09         0.97           77           35        7.9         39
## 2134        0.03         0.97           84           25        9.1         16
## 2135        0.06         0.97           86           16          9         44
## 2136        0.07         0.96           87           41        9.1        174
## 2137        0.12         0.96           88           43        8.2       3183
## 2138        0.15         0.96           76           46        4.3        894
## 2139        0.16         0.96           76           37        6.4        522
## 2140        0.00         0.96           NA           NA                    NA
## 2141        0.06         0.96           NA           NA                    NA
## 2142        0.06         0.96           NA           NA                    NA
## 2143        0.02         0.96           NA           NA                    NA
## 2144        0.01         0.96           NA           NA                    NA
## 2145        0.12         0.96           85           22        8.1          9
## 2146        0.15         0.96           65           12        7.5        111
## 2147        0.09         0.96           77           26        7.5         17
## 2148        0.10         0.96           82           48        8.6         73
## 2149        0.00         0.96           NA           NA                    NA
## 2150        0.09         0.96           71           33        7.9         43
## 2151        0.04         0.96           81           27        8.4         24
## 2152        0.14         0.96           88           76        8.5       4378
## 2153        0.14         0.96           70           21        6.9         92
## 2154        0.04         0.95           85           28        8.7         22
## 2155        0.22         0.95           52           47        6.7         18
## 2156        0.05         0.95           69           58        6.9        110
## 2157        0.07         0.95           71           64        7.4         88
## 2158        0.12         0.95           NA           NA        tbd         NA
## 2159        0.13         0.95           60            8        7.7         11
## 2160        0.11         0.95           63            4        7.6          7
## 2161        0.14         0.95           87           29        8.6         53
## 2162        0.09         0.95           60           50        7.8        238
## 2163        0.03         0.95           71           10        8.6         34
## 2164        0.16         0.95           NA           NA                    NA
## 2165        0.15         0.95           74           69        7.3        540
## 2166        0.07         0.95           NA           NA                    NA
## 2167        0.07         0.95           NA           NA                    NA
## 2168        0.03         0.95           NA           NA                    NA
## 2169        0.00         0.95           78           39        4.1        303
## 2170        0.05         0.95           78           59          8        177
## 2171        0.06         0.95           NA           NA                    NA
## 2172        0.12         0.95           79           18        6.9        156
## 2173        0.07         0.95           75           20        8.4         12
## 2174        0.18         0.95           79           53        7.7        114
## 2175        0.02         0.95           NA           NA                    NA
## 2176        0.06         0.95           NA           NA                    NA
## 2177        0.09         0.95           NA           NA        2.8          4
## 2178        0.09         0.95           73           79        7.3        126
## 2179        0.16         0.95           NA           NA                    NA
## 2180        0.08         0.95           NA           NA        tbd         NA
## 2181        0.08         0.95           NA           NA        tbd         NA
## 2182        0.13         0.95           68           56        6.9         62
## 2183        0.16         0.95           73           42        7.1         34
## 2184        0.10         0.94           NA           NA        3.2         24
## 2185        0.13         0.94           70           67        7.4        254
## 2186        0.21         0.94           NA           NA                    NA
## 2187        0.08         0.94           NA           NA                    NA
## 2188        0.03         0.94           73            9        7.8         13
## 2189        0.06         0.94           81           65        8.2        231
## 2190        0.06         0.94           NA           NA                    NA
## 2191        0.12         0.94           79           45        8.4         74
## 2192        0.09         0.94           NA           NA                    NA
## 2193        0.15         0.94           84           27        7.7        314
## 2194        0.13         0.94           NA           NA                    NA
## 2195        0.16         0.94           77           18        4.8         42
## 2196        0.03         0.94           86           35                    NA
## 2197        0.06         0.94           NA           NA                    NA
## 2198        0.05         0.94           64           38        7.8         19
## 2199        0.12         0.94           78           37          7         49
## 2200        0.07         0.94           83           26        6.7         37
## 2201        0.13         0.94           83           61        7.6        162
## 2202        0.08         0.94           47           15        4.5         21
## 2203        0.06         0.94           NA           NA                    NA
## 2204        0.12         0.94           87           69        9.1        293
## 2205        0.14         0.94           NA           NA                    NA
## 2206        0.04         0.94           92           41        7.8         72
## 2207        0.12         0.94           NA           NA                    NA
## 2208        0.13         0.94           83           30        8.9         31
## 2209        0.12         0.93           79           20        6.8         18
## 2210        0.15         0.93           77           32        7.9        187
## 2211        0.15         0.93           79           38        6.2        157
## 2212        0.07         0.93           70           13        6.1         24
## 2213        0.02         0.93           NA           NA                    NA
## 2214        0.04         0.93           90           25        8.5         21
## 2215        0.09         0.93           85           28        6.9        703
## 2216        0.08         0.93           64           77        7.5        213
## 2217        0.16         0.93           70           26        5.5          4
## 2218        0.02         0.93           NA           NA                    NA
## 2219        0.01         0.93           NA           NA                    NA
## 2220        0.04         0.93           81           71        8.7         87
## 2221        0.01         0.93           NA           NA                    NA
## 2222        0.00         0.93           NA           NA                    NA
## 2223        0.01         0.93           NA           NA                    NA
## 2224        0.10         0.93           85           20        8.6         17
## 2225        0.02         0.93           71           16        8.8          8
## 2226        0.08         0.93           90           86          8        597
## 2227        0.13         0.93           83           25        8.6         19
## 2228        0.03         0.93           71           21          7          5
## 2229        0.07         0.93           61           11        4.8          5
## 2230        0.05         0.93           66           58          7         76
## 2231        0.10         0.93           77           47        7.8        112
## 2232        0.00         0.93           NA           NA                    NA
## 2233        0.15         0.93           73           43        7.1         75
## 2234        0.06         0.93           39            5        5.6          8
## 2235        0.06         0.93           66            8        tbd         NA
## 2236        0.15         0.93           76           48          8         70
## 2237        0.15         0.93           80            5        6.8         12
## 2238        0.12         0.93           80           21        6.2       1489
## 2239        0.10         0.93           89           38        8.2       2482
## 2240        0.12         0.92           59           29        8.7         31
## 2241        0.03         0.92           71           27        7.5         21
## 2242        0.12         0.92           63           17        3.3          9
## 2243        0.06         0.92           86           29        7.1         70
## 2244        0.06         0.92           61           11        6.7         44
## 2245        0.07         0.92           65           13        tbd         NA
## 2246        0.07         0.92           NA           NA        tbd         NA
## 2247        0.05         0.92           81           53        9.2        203
## 2248        0.17         0.92           80           44        7.8        190
## 2249        0.16         0.92           85           31        8.5        575
## 2250        0.09         0.92           82           33        8.4        363
## 2251        0.06         0.92           NA           NA                    NA
## 2252        0.06         0.92           NA           NA                    NA
## 2253        0.01         0.92           NA           NA                    NA
## 2254        0.02         0.92           NA           NA                    NA
## 2255        0.06         0.92           87           23        7.5         75
## 2256        0.16         0.92           48            9        6.4         13
## 2257        0.07         0.92           73           71        7.7        224
## 2258        0.09         0.92           60           34        6.1         16
## 2259        0.08         0.92           79           47        7.1         34
## 2260        0.03         0.92           59           32          8         46
## 2261        0.12         0.92           NA           NA                    NA
## 2262        0.06         0.92           NA           NA                    NA
## 2263        0.08         0.92           79           56        7.8        161
## 2264        0.19         0.91           NA           NA                    NA
## 2265        0.05         0.91           74           21        8.2         62
## 2266        0.09         0.91           70           20        6.7          7
## 2267        0.12         0.91           NA           NA                    NA
## 2268        0.11         0.91           NA           NA                    NA
## 2269        0.12         0.91           78           20        5.4         14
## 2270        0.06         0.91           NA           NA        tbd         NA
## 2271        0.12         0.91           76           23        8.1         12
## 2272        0.16         0.91           NA           NA                    NA
## 2273        0.09         0.91           77           63        7.2         53
## 2274        0.15         0.91           76           27        8.3         48
## 2275        0.09         0.91           63           15        8.9         23
## 2276        0.07         0.91           92           59        8.9        950
## 2277        0.07         0.91           NA           NA                    NA
## 2278        0.01         0.91           NA           NA                    NA
## 2279        0.07         0.91           90           13        8.7         31
## 2280        0.06         0.91           57           25        7.4         57
## 2281        0.09         0.91           86           15        5.7        183
## 2282        0.04         0.91           59            7        tbd         NA
## 2283        0.14         0.91           81           38        6.8        110
## 2284        0.09         0.91           56           26        8.1         57
## 2285        0.07         0.91           NA           NA                    NA
## 2286        0.00         0.91           NA           NA                    NA
## 2287        0.04         0.91           75           20        7.9         12
## 2288        0.17         0.91           76           42        6.5         53
## 2289        0.12         0.90           80           23        7.6          5
## 2290        0.08         0.90           78           68        8.3        432
## 2291        0.14         0.90           77           80        3.4       1221
## 2292        0.08         0.90           71           24          7        186
## 2293        0.00         0.90           NA           NA                    NA
## 2294        0.12         0.90           78           36        7.6          9
## 2295        0.08         0.90           73           75        7.3         82
## 2296        0.12         0.90           90           52        8.8        114
## 2297        0.08         0.90           76           45        6.7        344
## 2298        0.08         0.90           NA           NA          7        109
## 2299        0.08         0.90           88           82        8.3        818
## 2300        0.15         0.90           70           60        5.7        174
## 2301        0.06         0.90           NA           NA                    NA
## 2302        0.14         0.90           70           46          7         80
## 2303        0.16         0.90           NA           NA                    NA
## 2304        0.07         0.90           71           64        5.7       2421
## 2305        0.06         0.90           NA           NA                    NA
## 2306        0.05         0.90           70           44        8.1          8
## 2307        0.12         0.90           74           44        7.4         10
## 2308        0.15         0.90           74           13        5.2        118
## 2309        0.05         0.90           73           28        7.6         34
## 2310        0.01         0.90           NA           NA                    NA
## 2311        0.12         0.90           50           14        6.5         28
## 2312        0.03         0.90           71           16        7.5         15
## 2313        0.10         0.90           69            5        tbd         NA
## 2314        0.07         0.90           61            4        5.2         11
## 2315        0.14         0.90           86           53        7.8         49
## 2316        0.08         0.90           NA           NA        tbd         NA
## 2317        0.04         0.90           82           63        8.5         14
## 2318        0.04         0.90           85           28        7.6         14
## 2319        0.11         0.90           68           21        6.6         27
## 2320        0.07         0.90           NA           NA        7.2         21
## 2321        0.03         0.89           71            6        tbd         NA
## 2322        0.12         0.89           76           25          8         20
## 2323        0.06         0.89           68           11        tbd         NA
## 2324        0.02         0.89           91           22        8.5         59
## 2325        0.08         0.89           67           64        6.3        121
## 2326        0.12         0.89           83           29        6.2         16
## 2327        0.10         0.89           77           47        6.7         58
## 2328        0.02         0.89           84           16        8.6         58
## 2329        0.02         0.89           85           38        9.1        132
## 2330        0.09         0.89           NA           NA                    NA
## 2331        0.10         0.89           76            8        tbd         NA
## 2332        0.00         0.89           NA           NA                    NA
## 2333        0.17         0.89           NA           NA                    NA
## 2334        0.18         0.89           77           56        8.3         80
## 2335        0.02         0.89           62           11        5.5          8
## 2336        0.08         0.89           NA           NA        6.8         14
## 2337        0.06         0.89           83           10        8.2         22
## 2338        0.11         0.89           85           16        7.5          6
## 2339        0.14         0.89           83           43        7.8         30
## 2340        0.08         0.89           NA           NA                    NA
## 2341        0.21         0.89           81           67        8.1         84
## 2342        0.08         0.89           75           12        7.8         20
## 2343        0.11         0.89           80           41        7.3         17
## 2344        0.10         0.89           NA           NA                    NA
## 2345        0.06         0.89           NA           NA                    NA
## 2346        0.11         0.89           NA           NA                    NA
## 2347        0.09         0.89           80           18        8.4         22
## 2348        0.20         0.89           NA           NA                    NA
## 2349        0.13         0.89           70           25        7.1         16
## 2350        0.00         0.89           NA           NA                    NA
## 2351        0.06         0.89           70           17        7.9         15
## 2352        0.13         0.89           NA           NA                    NA
## 2353        0.07         0.89           79            9        4.1         34
## 2354        0.09         0.88           68           43        8.1         40
## 2355        0.06         0.88           NA           NA                    NA
## 2356        0.15         0.88           71           30        7.5         49
## 2357        0.09         0.88           86           40        4.2       6430
## 2358        0.15         0.88           78           37        8.1         60
## 2359        0.10         0.88           84           43        7.5         65
## 2360        0.15         0.88           78           47        7.8         91
## 2361        0.08         0.88           NA           NA                    NA
## 2362        0.01         0.88           NA           NA                    NA
## 2363        0.11         0.88           84           23        8.3         13
## 2364        0.08         0.88           78           52        8.3        144
## 2365        0.50         0.88           NA           NA                    NA
## 2366        0.06         0.88           NA           NA                    NA
## 2367        0.07         0.88           51           11        7.8         17
## 2368        0.08         0.88           77           27        6.4        194
## 2369        0.05         0.88           82           78        8.5        397
## 2370        0.08         0.88           74           55        7.3         81
## 2371        0.09         0.88           61            8        5.5         18
## 2372        0.07         0.88           90           40        6.6       2299
## 2373        0.06         0.88           93           57        8.2        137
## 2374        0.08         0.88           75           49        7.6         45
## 2375        0.11         0.88           86           25        8.1         18
## 2376        0.14         0.88           82           49        7.8        345
## 2377        0.03         0.87           88           49        8.8         45
## 2378        0.07         0.87           76           29        6.8         27
## 2379        0.06         0.87           48            4        6.6         16
## 2380        0.06         0.87           NA           NA                    NA
## 2381        0.11         0.87           69           29        7.2         30
## 2382        0.00         0.87           NA           NA                    NA
## 2383        0.03         0.87           81           33        8.8         17
## 2384        0.08         0.87           80           47        7.9        468
## 2385        0.07         0.87           80           71        7.7        446
## 2386        0.17         0.87           NA           NA                    NA
## 2387        0.06         0.87           NA           NA                    NA
## 2388        0.00         0.87           NA           NA                    NA
## 2389        0.12         0.87           68           20        7.2        105
## 2390        0.06         0.87           69           27        8.1         35
## 2391        0.06         0.87           NA           NA                    NA
## 2392        0.07         0.87           63           31        6.8         29
## 2393        0.06         0.87           NA           NA                    NA
## 2394        0.15         0.87           73           69        6.9        159
## 2395        0.12         0.87           69           17        7.3         19
## 2396        0.06         0.87           NA           NA                    NA
## 2397        0.09         0.87           87           62        7.9        131
## 2398        0.09         0.87           83           59        7.4         94
## 2399        0.23         0.87           NA           NA                    NA
## 2400        0.09         0.87           85           84        8.1        237
## 2401        0.12         0.87           88           37          9         37
## 2402        0.02         0.87           65           14        8.1         17
## 2403        0.08         0.87           NA           NA        7.1         14
## 2404        0.11         0.87           65           17        tbd         NA
## 2405        0.08         0.87           62           17        4.9         12
## 2406        0.09         0.87           76           65        8.3        149
## 2407        0.06         0.87           92           19        8.3        129
## 2408        0.03         0.87           55           14        8.2         16
## 2409        0.01         0.87           NA           NA                    NA
## 2410        0.16         0.87           77           23        6.3        288
## 2411        0.16         0.87           72           43        7.1         73
## 2412        0.18         0.87           73           29        tbd         NA
## 2413        0.08         0.86           58            7        tbd         NA
## 2414        0.07         0.86           76           29        8.5         28
## 2415        0.00         0.86           NA           NA                    NA
## 2416        0.18         0.86           NA           NA                    NA
## 2417        0.14         0.86           80           69        6.2        160
## 2418        0.06         0.86           76           42        8.5         26
## 2419        0.01         0.86           81           10        8.3         14
## 2420        0.11         0.86           74           14        8.4         11
## 2421        0.06         0.86           53            4        5.8          4
## 2422        0.01         0.86           NA           NA                    NA
## 2423        0.08         0.86           72           65        6.5         51
## 2424        0.06         0.86           NA           NA                    NA
## 2425        0.23         0.86           76           46        7.9         14
## 2426        0.04         0.86           72           15        9.1         39
## 2427        0.07         0.85           71            7        tbd         NA
## 2428        0.06         0.85           NA           NA                    NA
## 2429        0.11         0.85           NA           NA                    NA
## 2430        0.09         0.85           83           61        8.1         58
## 2431        0.11         0.85           73           22        7.3         25
## 2432        0.07         0.85           81           33          7         28
## 2433        0.06         0.85           NA           NA                    NA
## 2434        0.03         0.85           88           26        8.9         14
## 2435        0.01         0.85           NA           NA                    NA
## 2436        0.14         0.85           NA           NA        7.4         14
## 2437        0.11         0.85           81           34        7.6        376
## 2438        0.06         0.85           NA           NA                    NA
## 2439        0.12         0.85           71           32        7.2         51
## 2440        0.06         0.85           NA           NA        tbd         NA
## 2441        0.13         0.85           82           50        8.2        193
## 2442        0.10         0.85           83           52        7.7        115
## 2443        0.53         0.85           65            9          8         11
## 2444        0.06         0.85           NA           NA                    NA
## 2445        0.11         0.85           86           31        8.2         48
## 2446        0.05         0.85           72           19        7.7         72
## 2447        0.08         0.85           64           17        7.9         31
## 2448        0.05         0.85           75           25        8.4         26
## 2449        0.06         0.85           85           22        7.4         25
## 2450        0.09         0.85           78           65        8.7         95
## 2451        0.12         0.85           74           56          7         88
## 2452        0.14         0.84           84           39        7.1        422
## 2453        0.02         0.84           80           41        8.8         30
## 2454        0.08         0.84           61           48        7.4        113
## 2455        0.07         0.84           71           59        7.9        216
## 2456        0.14         0.84           78           74        7.9         96
## 2457        0.02         0.84           63           27        7.1          7
## 2458        0.06         0.84           84           87        8.9       1548
## 2459        0.07         0.84           83           30        7.8         39
## 2460        0.09         0.84           NA           NA        tbd         NA
## 2461        0.11         0.84           68           19        tbd         NA
## 2462        0.00         0.84           NA           NA                    NA
## 2463        0.12         0.84           84           50        7.8         53
## 2464        0.05         0.84           NA           NA                    NA
## 2465        0.11         0.84           62           15        5.3         20
## 2466        0.12         0.84           NA           NA        7.6        193
## 2467        0.05         0.84           83           59        8.4         89
## 2468        0.11         0.84           86           14        8.1         10
## 2469        0.09         0.84           77            9        6.2         40
## 2470        0.10         0.84           51           15        4.9         19
## 2471        0.07         0.84           67           37        6.8        131
## 2472        0.01         0.84           89           50          9        132
## 2473        0.74         0.84           NA           NA        7.6         14
## 2474        0.08         0.84           86           53        8.4        108
## 2475        0.05         0.84           NA           NA                    NA
## 2476        0.06         0.83           57           11        6.7         28
## 2477        0.06         0.83           82           19        7.2         22
## 2478        0.05         0.83           NA           NA                    NA
## 2479        0.06         0.83           75           17        8.8         24
## 2480        0.04         0.83           78           18        6.6         16
## 2481        0.14         0.83           60           52        7.4         21
## 2482        0.07         0.83           49           76        4.4        456
## 2483        0.01         0.83           57            6          5          5
## 2484        0.07         0.83           NA           NA                    NA
## 2485        0.05         0.83           82           17        5.8         41
## 2486        0.03         0.83           77           45        7.8         49
## 2487        0.13         0.83           78           40        6.7         17
## 2488        0.00         0.83           NA           NA                    NA
## 2489        0.08         0.83           79           18        8.5         18
## 2490        0.05         0.83           NA           NA                    NA
## 2491        0.05         0.83           NA           NA                    NA
## 2492        0.11         0.83           83           59        8.8        130
## 2493        0.11         0.83           77           25        8.2          6
## 2494        0.08         0.83           69           41        7.4         38
## 2495        0.09         0.83           84           51        5.3        191
## 2496        0.05         0.83           NA           NA                    NA
## 2497        0.05         0.83           NA           NA                    NA
## 2498        0.07         0.83           84           55        7.8        171
## 2499        0.06         0.83           75           33        7.6        197
## 2500        0.11         0.83           82           52        4.3       1197
## 2501        0.08         0.82           70           16        1.8        442
## 2502        0.10         0.82           NA           NA        8.3         52
## 2503        0.07         0.82           NA           NA                    NA
## 2504        0.03         0.82           78           30        7.8         25
## 2505        0.02         0.82           91           27          9         27
## 2506        0.11         0.82           81           29        8.2         33
## 2507        0.06         0.82           86           66        7.9         23
## 2508        0.05         0.82           65           18        8.2         28
## 2509        0.15         0.82           83           49          8         34
## 2510        0.03         0.82           75           18        6.4         15
## 2511        0.01         0.82           NA           NA                    NA
## 2512        0.02         0.82           NA           NA                    NA
## 2513        0.07         0.82           NA           NA        tbd         NA
## 2514        0.06         0.82           53            6        tbd         NA
## 2515        0.02         0.82           78           30          9         20
## 2516        0.06         0.82           NA           NA        4.3          9
## 2517        0.01         0.82           NA           NA                    NA
## 2518        0.09         0.82           77           59        7.6         91
## 2519        0.10         0.82           NA           NA        6.6         13
## 2520        0.08         0.82           90           47        8.9        634
## 2521        0.09         0.82           74           27        8.8        158
## 2522        0.13         0.82           NA           NA                    NA
## 2523        0.13         0.82           63           33          7        100
## 2524        0.00         0.81           NA           NA                    NA
## 2525        0.10         0.81           75           20        tbd         NA
## 2526        0.06         0.81           86           43          8         45
## 2527        0.00         0.81           NA           NA                    NA
## 2528        0.09         0.81           NA           NA        tbd         NA
## 2529        0.05         0.81           78            9        8.7         31
## 2530        0.00         0.81           NA           NA                    NA
## 2531        0.05         0.81           73            8        6.1          9
## 2532        0.08         0.81           NA           NA                    NA
## 2533        0.02         0.81           86           55        7.2         74
## 2534        0.05         0.81           NA           NA                    NA
## 2535        0.22         0.81           66           43        8.7         52
## 2536        0.05         0.81           81            8        8.8         37
## 2537        0.08         0.81           60           48        7.6         25
## 2538        0.16         0.81           86           60        8.7        102
## 2539        0.00         0.81           NA           NA                    NA
## 2540        0.01         0.81           NA           NA                    NA
## 2541        0.01         0.81           NA           NA                    NA
## 2542        0.08         0.81           78           34        7.6         29
## 2543        0.10         0.81           70           34        8.2         17
## 2544        0.08         0.81           73           18        5.9        111
## 2545        0.06         0.81           80           20        6.9         14
## 2546        0.00         0.81           NA           NA                    NA
## 2547        0.05         0.81           NA           NA                    NA
## 2548        0.13         0.81           74           46        7.1         30
## 2549        0.09         0.81           NA           NA        7.2          9
## 2550        0.05         0.81           NA           NA                    NA
## 2551        0.09         0.81           NA           NA        tbd         NA
## 2552        0.11         0.81           75           31        4.4        166
## 2553        0.09         0.81           60           27        7.5         63
## 2554        0.12         0.81           76           36        tbd         NA
## 2555        0.05         0.80           NA           NA                    NA
## 2556        0.01         0.80           75           58        8.2         73
## 2557        0.06         0.80           NA           NA          7          4
## 2558        0.02         0.80           75           36        7.6         50
## 2559        0.05         0.80           NA           NA                    NA
## 2560        0.10         0.80           80           39        8.3         43
## 2561        0.04         0.80           79           69        8.5         99
## 2562        0.07         0.80           45            6        7.8         11
## 2563        0.05         0.80           80           14        8.1         28
## 2564        0.09         0.80           87           65        8.2        110
## 2565        0.04         0.80           83           55        7.5         35
## 2566        0.07         0.80           49            7        tbd         NA
## 2567        0.17         0.80           78           86        8.9        513
## 2568        0.18         0.80           72            9        4.6          5
## 2569        0.07         0.80           84           62        8.1         79
## 2570        0.12         0.80           86           14        8.5        223
## 2571        0.05         0.80           NA           NA                    NA
## 2572        0.02         0.80           68           16        8.3         15
## 2573        0.17         0.80           NA           NA                    NA
## 2574        0.07         0.80           NA           NA        tbd         NA
## 2575        0.00         0.80           NA           NA                    NA
## 2576        0.00         0.80           NA           NA                    NA
## 2577        0.06         0.80           57            8          7         15
## 2578        0.22         0.79           57            9        7.3         10
## 2579        0.01         0.79           NA           NA                    NA
## 2580        0.11         0.79           73           31        8.6         61
## 2581        0.18         0.79           71           11        6.3         15
## 2582        0.07         0.79           48           10        6.4          5
## 2583        0.05         0.79           NA           NA                    NA
## 2584        0.16         0.79           74           10        5.8          5
## 2585        0.02         0.79           79           28        8.9        148
## 2586        0.08         0.79           NA           NA        5.2         10
## 2587        0.05         0.79           NA           NA                    NA
## 2588        0.10         0.79           85           40        5.3       1471
## 2589        0.05         0.79           34            6        5.3          6
## 2590        0.05         0.79           NA           NA        tbd         NA
## 2591        0.07         0.79           83           63          8        456
## 2592        0.07         0.79           76           12        5.4        107
## 2593        0.07         0.79           74           69          7        173
## 2594        0.01         0.79           NA           NA                    NA
## 2595        0.01         0.79           NA           NA                    NA
## 2596        0.10         0.79           70           10        tbd         NA
## 2597        0.07         0.79           78           23        8.4         19
## 2598        0.00         0.79           NA           NA                    NA
## 2599        0.08         0.79           65           72        6.9         60
## 2600        0.06         0.79           75           59        7.8        320
## 2601        0.10         0.79           87           54        7.1        680
## 2602        0.13         0.79           NA           NA                    NA
## 2603        0.01         0.79           NA           NA                    NA
## 2604        0.07         0.79           84           75        7.7        325
## 2605        0.07         0.79           76           52          5         30
## 2606        0.11         0.79           83            6        8.3         23
## 2607        0.05         0.79           82           20        8.2         23
## 2608        0.25         0.79           64            5        7.3         18
## 2609        0.06         0.79           72           56        7.2        150
## 2610        0.13         0.79           53           17          6         34
## 2611        0.11         0.79           69           32        7.3         19
## 2612        0.06         0.78           NA           NA        5.1        116
## 2613        0.00         0.78           NA           NA                    NA
## 2614        0.13         0.78           55            5        3.1         57
## 2615        0.08         0.78           65           80          7        458
## 2616        0.01         0.78           NA           NA                    NA
## 2617        0.11         0.78           81           38        7.7          9
## 2618        0.01         0.78           71            4        tbd         NA
## 2619        0.05         0.78           NA           NA                    NA
## 2620        0.06         0.78           85           59        8.1        148
## 2621        0.61         0.78           NA           NA                    NA
## 2622        0.07         0.78           74           31        8.5         39
## 2623        0.05         0.78           79           63        8.1         86
## 2624        0.07         0.78           86           59        7.4        105
## 2625        0.05         0.78           NA           NA                    NA
## 2626        0.07         0.78           57           43        6.3        192
## 2627        0.14         0.78           NA           NA        3.1         18
## 2628        0.05         0.78           NA           NA                    NA
## 2629        0.06         0.78           68           10        7.8         32
## 2630        0.04         0.78           88           59        8.9        283
## 2631        0.06         0.78           73           34        8.2         30
## 2632        0.09         0.78           85           39        7.7         87
## 2633        0.11         0.78           81           12        8.4         18
## 2634        0.00         0.78           NA           NA                    NA
## 2635        0.01         0.78           NA           NA                    NA
## 2636        0.02         0.78           80           17        8.6         46
## 2637        0.06         0.78           NA           NA                    NA
## 2638        0.12         0.78           72           38        6.3         52
## 2639        0.05         0.78           NA           NA                    NA
## 2640        0.08         0.78           87           55        8.2        209
## 2641        0.01         0.77           NA           NA                    NA
## 2642        0.07         0.77           48           47        3.8        449
## 2643        0.10         0.77           71           43        7.4         34
## 2644        0.05         0.77           NA           NA                    NA
## 2645        0.05         0.77           NA           NA                    NA
## 2646        0.01         0.77           NA           NA                    NA
## 2647        0.07         0.77           81           74        8.6        176
## 2648        0.19         0.77           57           14        7.1         19
## 2649        0.06         0.77           81           75        7.3        229
## 2650        0.10         0.77           53           30        6.3         46
## 2651        0.01         0.77           NA           NA                    NA
## 2652        0.05         0.77           78           13        8.5         24
## 2653        0.10         0.77           66            5        tbd         NA
## 2654        0.08         0.77           NA           NA                    NA
## 2655        0.06         0.77           52           56        4.9        330
## 2656        0.06         0.77           70           36        6.5         15
## 2657        0.01         0.77           NA           NA                    NA
## 2658        0.23         0.77           70           22        6.6         18
## 2659        0.07         0.77           NA           NA        tbd         NA
## 2660        0.02         0.77           NA           NA                    NA
## 2661        0.00         0.77           NA           NA                    NA
## 2662        0.01         0.77           38           14          5          6
## 2663        0.07         0.77           69           42        7.5         31
## 2664        0.10         0.77           NA           NA                    NA
## 2665        0.10         0.77           84           33        8.7         16
## 2666        0.01         0.77           77           16        8.4         27
## 2667        0.10         0.77           81           15        8.4         17
## 2668        0.03         0.77           45           26          3         29
## 2669        0.04         0.77           46           28        5.9         34
## 2670        0.10         0.77           57           26        7.2         58
## 2671        0.06         0.77           79           45        8.2         38
## 2672        0.07         0.76           69            6        tbd         NA
## 2673        0.36         0.76           66            5        6.7         49
## 2674        0.10         0.76           NA           NA          9         40
## 2675        0.05         0.76           NA           NA                    NA
## 2676        0.07         0.76           76           11        tbd         NA
## 2677        0.08         0.76           NA           NA                    NA
## 2678        0.11         0.76           NA           NA                    NA
## 2679        0.06         0.76           NA           NA        tbd         NA
## 2680        0.03         0.76           56           57        4.7         69
## 2681        0.10         0.76           NA           NA                    NA
## 2682        0.10         0.76           NA           NA                    NA
## 2683        0.10         0.76           NA           NA                    NA
## 2684        0.05         0.76           NA           NA                    NA
## 2685        0.05         0.76           94            4        8.7         40
## 2686        0.19         0.76           52            7        6.8         37
## 2687        0.06         0.76           85           54          8        188
## 2688        0.06         0.76           91           80        8.2       1217
## 2689        0.15         0.76           63           25          8         41
## 2690        0.07         0.76           NA           NA                    NA
## 2691        0.01         0.76           NA           NA                    NA
## 2692        0.00         0.76           NA           NA                    NA
## 2693        0.00         0.76           NA           NA                    NA
## 2694        0.02         0.76           NA           NA                    NA
## 2695        0.07         0.76           NA           NA                    NA
## 2696        0.10         0.76           65           47        6.9         30
## 2697        0.36         0.76           NA           NA        6.6          7
## 2698        0.07         0.76           52           29        3.3         31
## 2699        0.03         0.76           81           53        8.8         24
## 2700        0.01         0.76           39            6        7.6          5
## 2701        0.07         0.76           87           22        7.6         19
## 2702        0.07         0.76           NA           NA                    NA
## 2703        0.08         0.76           NA           NA                    NA
## 2704        0.10         0.76           95           52        8.8       5999
## 2705        0.12         0.76           51           48        4.9        278
## 2706        0.06         0.76           71           10        7.8         31
## 2707        0.10         0.76           NA           NA                    NA
## 2708        0.09         0.76           NA           NA                    NA
## 2709        0.06         0.76           NA           NA                    NA
## 2710        0.08         0.76           NA           NA                    NA
## 2711        0.04         0.76           NA           NA                    NA
## 2712        0.00         0.76           NA           NA                    NA
## 2713        0.08         0.75           60           35          6          8
## 2714        0.54         0.75           67            8        8.4          9
## 2715        0.03         0.75           81           58        7.9         86
## 2716        0.06         0.75           NA           NA                    NA
## 2717        0.05         0.75           76           10        8.9         55
## 2718        0.04         0.75           NA           NA                    NA
## 2719        0.12         0.75           89           56        8.4        704
## 2720        0.14         0.75           55           46        5.8         30
## 2721        0.07         0.75           95           10        7.3        900
## 2722        0.08         0.75           81           75        7.8         69
## 2723        0.08         0.75           58           22          6          8
## 2724        0.04         0.75           60           18          7         27
## 2725        0.10         0.75           86           46        7.8         22
## 2726        0.14         0.75           72            9          6          9
## 2727        0.06         0.75           72            6        5.2         25
## 2728        0.09         0.75           81           53        6.7        150
## 2729        0.10         0.75           69           30        6.5          6
## 2730        0.01         0.75           NA           NA                    NA
## 2731        0.08         0.75           78           21        7.4         49
## 2732        0.05         0.75           NA           NA                    NA
## 2733        0.13         0.75           NA           NA                    NA
## 2734        0.05         0.75           NA           NA        tbd         NA
## 2735        0.10         0.75           82           56        7.2        386
## 2736        0.03         0.75           83           55        7.8         12
## 2737        0.06         0.75           75           23        7.9         16
## 2738        0.08         0.75           NA           NA                    NA
## 2739        0.08         0.75           62           24        7.6         14
## 2740        0.06         0.75           81           22        7.9         27
## 2741        0.10         0.75           76           27          9         18
## 2742        0.07         0.75           69           63        7.1        120
## 2743        0.11         0.75           NA           NA                    NA
## 2744        0.17         0.75           59           42        6.5         61
## 2745        0.04         0.75           80           47        6.9        106
## 2746        0.00         0.74           NA           NA                    NA
## 2747        0.10         0.74           NA           NA                    NA
## 2748        0.11         0.74           54           45        7.1         57
## 2749        0.11         0.74           76           45        5.7          9
## 2750        0.10         0.74           79           25        7.7         33
## 2751        0.06         0.74           63           37        7.9         31
## 2752        0.00         0.74           NA           NA                    NA
## 2753        0.01         0.74           NA           NA                    NA
## 2754        0.10         0.74           67           53        7.2         50
## 2755        0.06         0.74           70           19        8.8         31
## 2756        0.21         0.74           69           11        6.5         31
## 2757        0.07         0.74           91           30        7.9        915
## 2758        0.08         0.74           65           19        tbd         NA
## 2759        0.12         0.74           80           20        7.4        771
## 2760        0.11         0.74           NA           NA                    NA
## 2761        0.10         0.74           79           39        6.8        179
## 2762        0.03         0.74           84           53        7.4         40
## 2763        0.09         0.74           74           30        7.2        204
## 2764        0.13         0.74           60           20        7.1         31
## 2765        0.01         0.74           NA           NA                    NA
## 2766        0.09         0.74           74           19        tbd         NA
## 2767        0.06         0.74           NA           NA                    NA
## 2768        0.12         0.74           85           56        8.1        136
## 2769        0.07         0.74           NA           NA                    NA
## 2770        0.05         0.74           NA           NA                    NA
## 2771        0.07         0.74           77           28        6.7         82
## 2772        0.12         0.74           NA           NA                    NA
## 2773        0.03         0.74           83           29        8.2         24
## 2774        0.02         0.74           NA           NA                    NA
## 2775        0.12         0.74           NA           NA        6.7         11
## 2776        0.13         0.74           86           42        6.8       1594
## 2777        0.05         0.74           79           67        8.2        264
## 2778        0.07         0.74           87           36        7.8        114
## 2779        0.06         0.74           82            8          8         71
## 2780        0.05         0.74           49           18        6.3          4
## 2781        0.13         0.74           NA           NA        4.6         13
## 2782        0.02         0.74           72           31        8.3         25
## 2783        0.10         0.73           NA           NA        3.3         21
## 2784        0.09         0.73           74           48        7.3         51
## 2785        0.06         0.73           85           45        5.9       3926
## 2786        0.08         0.73           72           42          8        136
## 2787        0.07         0.73           55            6        tbd         NA
## 2788        0.15         0.73           55           24        6.9         19
## 2789        0.05         0.73           NA           NA                    NA
## 2790        0.06         0.73           NA           NA                    NA
## 2791        0.00         0.73           NA           NA                    NA
## 2792        0.05         0.73           NA           NA                    NA
## 2793        0.14         0.73           79           30        6.6          7
## 2794        0.01         0.73           55           15        4.8          4
## 2795        0.05         0.73           76           10        8.9         20
## 2796        0.11         0.73           NA           NA                    NA
## 2797        0.00         0.73           NA           NA                    NA
## 2798        0.01         0.73           NA           NA                    NA
## 2799        0.06         0.73           78           11        7.7          9
## 2800        0.01         0.73           76            5          8         15
## 2801        0.05         0.73           NA           NA                    NA
## 2802        0.06         0.73           79           50        6.3        268
## 2803        0.00         0.73           NA           NA                    NA
## 2804        0.03         0.73           80           30        8.7         32
## 2805        0.07         0.73           86           47        7.7        180
## 2806        0.01         0.73           NA           NA                    NA
## 2807        0.12         0.73           72           39        5.8        168
## 2808        0.05         0.73           88           49        7.7         71
## 2809        0.06         0.73           79           43        6.9         20
## 2810        0.00         0.73           NA           NA                    NA
## 2811        0.03         0.73           84           67        8.7         27
## 2812        0.12         0.73           71           70          7         87
## 2813        0.08         0.73           86           55          9         86
## 2814        0.06         0.73           75            6        6.6         26
## 2815        0.01         0.73           NA           NA        tbd         NA
## 2816        0.12         0.73           80           53        7.1         65
## 2817        0.08         0.73           74           23        7.1         83
## 2818        0.09         0.73           64           17        8.7         13
## 2819        0.02         0.72           74           16        6.8         25
## 2820        0.04         0.72           65           15          7         22
## 2821        0.01         0.72           73           13        7.5         12
## 2822        0.10         0.72           74           52        7.9         54
## 2823        0.08         0.72           65            9        5.2          5
## 2824        0.08         0.72           NA           NA        tbd         NA
## 2825        0.10         0.72           NA           NA                    NA
## 2826        0.05         0.72           NA           NA                    NA
## 2827        0.07         0.72           70            7        tbd         NA
## 2828        0.00         0.72           NA           NA                    NA
## 2829        0.05         0.72           NA           NA                    NA
## 2830        0.07         0.72           76           71        4.2       3742
## 2831        0.10         0.72           68           10        6.6          9
## 2832        0.07         0.72           74           45        6.7        155
## 2833        0.03         0.72           73           39        8.9         16
## 2834        0.07         0.72           55           32          7         28
## 2835        0.10         0.72           79           33          6          8
## 2836        0.06         0.72           NA           NA          0          4
## 2837        0.05         0.72           NA           NA                    NA
## 2838        0.06         0.72           79           31        7.1         34
## 2839        0.02         0.72           NA           NA                    NA
## 2840        0.04         0.72           83           56        8.1        169
## 2841        0.14         0.72           83           17        7.7        205
## 2842        0.05         0.72           72           12        8.4         18
## 2843        0.03         0.72           86           48        8.2         87
## 2844        0.09         0.72           NA           NA        tbd         NA
## 2845        0.01         0.72           NA           NA                    NA
## 2846        0.06         0.72           77           23        7.2         24
## 2847        0.06         0.72           90           27        8.1         61
## 2848        0.07         0.72           74           16        6.4        161
## 2849        0.12         0.72           NA           NA                    NA
## 2850        0.04         0.72           75            6        5.4          7
## 2851        0.01         0.72           82           20        8.6         11
## 2852        0.05         0.72           93           32        9.3      10665
## 2853        0.09         0.72           84           61        7.1         54
## 2854        0.01         0.72           66           10        8.5         37
## 2855        0.06         0.72           91           33        8.3        107
## 2856        0.06         0.72           75           47        6.6         30
## 2857        0.12         0.72           81           58        8.2         86
## 2858        0.07         0.72           NA           NA                    NA
## 2859        0.05         0.72           NA           NA                    NA
## 2860        0.00         0.72           87           46        8.3       1467
## 2861        0.08         0.72           87           81        7.1        166
## 2862        0.03         0.71           79           17        8.1         18
## 2863        0.03         0.71           92           16        8.3         16
## 2864        0.06         0.71           86           59        8.4        137
## 2865        0.05         0.71           NA           NA        8.3          6
## 2866        0.08         0.71           89           57        8.2       2235
## 2867        0.18         0.71           60            4        7.2         23
## 2868        0.09         0.71           93           30          9         48
## 2869        0.02         0.71           91           56          8       1970
## 2870        0.05         0.71           39           10          7         47
## 2871        0.06         0.71           66            8          4          5
## 2872        0.09         0.71           66            8        tbd         NA
## 2873        0.02         0.71           73           30        7.8         23
## 2874        0.05         0.71           43           11        tbd         NA
## 2875        0.02         0.71           NA           NA                    NA
## 2876        0.09         0.71           85           41        8.8        315
## 2877        0.02         0.71           NA           NA                    NA
## 2878        0.02         0.71           48           13        5.1         24
## 2879        0.01         0.71           46            5        tbd         NA
## 2880        0.09         0.71           49            6        6.2          5
## 2881        0.07         0.71           75           10        6.8          8
## 2882        0.06         0.71           NA           NA                    NA
## 2883        0.01         0.71           NA           NA                    NA
## 2884        0.01         0.71           NA           NA                    NA
## 2885        0.00         0.71           NA           NA                    NA
## 2886        0.06         0.71           68            8        6.5          4
## 2887        0.02         0.71           NA           NA                    NA
## 2888        0.07         0.71           77           32        7.4         14
## 2889        0.05         0.71           NA           NA                    NA
## 2890        0.10         0.71           73           54        7.8        117
## 2891        0.04         0.71           59           31        7.3         49
## 2892        0.05         0.71           NA           NA                    NA
## 2893        0.05         0.71           NA           NA                    NA
## 2894        0.05         0.71           83           24        7.7         26
## 2895        0.03         0.71           77           41        7.9         16
## 2896        0.06         0.70           82           65        6.4        186
## 2897        0.02         0.70           65           43        5.9         21
## 2898        0.07         0.70           50           44        5.5        182
## 2899        0.02         0.70           89           19        8.5         24
## 2900        0.14         0.70           67           43        6.9          8
## 2901        0.00         0.70           NA           NA                    NA
## 2902        0.05         0.70           81           30        7.8         44
## 2903        0.05         0.70           NA           NA                    NA
## 2904        0.06         0.70           86            4        7.1         18
## 2905        0.02         0.70           58           28        5.9         14
## 2906        0.04         0.70           78           51        8.4         79
## 2907        0.09         0.70           73           33        8.3         19
## 2908        0.06         0.70           79           61        8.1        372
## 2909        0.02         0.70           90           26        tbd         NA
## 2910        0.01         0.70           67            8        tbd         NA
## 2911        0.09         0.70           84           22        8.2         11
## 2912        0.05         0.70           NA           NA                    NA
## 2913        0.03         0.70           89           84        8.6        113
## 2914        0.06         0.70           68           60          7        158
## 2915        0.08         0.70           63            5        tbd         NA
## 2916        0.05         0.70           NA           NA                    NA
## 2917        0.05         0.70           NA           NA                    NA
## 2918        0.11         0.70           78           61        7.5         91
## 2919        0.05         0.70           86           56          7         72
## 2920        0.01         0.70           92           28          9         95
## 2921        0.09         0.70           66           16        6.6          9
## 2922        0.05         0.70           NA           NA                    NA
## 2923        0.17         0.70           NA           NA        6.7          7
## 2924        0.09         0.70           65           30        7.6         62
## 2925        0.07         0.70           NA           NA        tbd         NA
## 2926        0.05         0.70           66           35        6.4         16
## 2927        0.04         0.70           58           16        8.1         49
## 2928        0.05         0.70           85           33        8.7         76
## 2929        0.09         0.70           90           33        8.8        127
## 2930        0.06         0.70           43           18        3.3         25
## 2931        0.07         0.70           80           63        7.6        130
## 2932        0.01         0.70           73            8        7.5         39
## 2933        0.00         0.70           NA           NA                    NA
## 2934        0.01         0.70           71            6        tbd         NA
## 2935        0.13         0.70           65           49        7.4         45
## 2936        0.01         0.69           NA           NA                    NA
## 2937        0.11         0.69           NA           NA                    NA
## 2938        0.05         0.69           NA           NA                    NA
## 2939        0.17         0.69           65           19        7.5         27
## 2940        0.06         0.69           70           15        6.8          6
## 2941        0.04         0.69           NA           NA                    NA
## 2942        0.02         0.69           89           37        7.4         34
## 2943        0.09         0.69           77           41        8.6         74
## 2944        0.12         0.69           NA           NA                    NA
## 2945        0.11         0.69           NA           NA                    NA
## 2946        0.07         0.69           NA           NA        1.6         21
## 2947        0.05         0.69           NA           NA        5.4         13
## 2948        0.06         0.69           40           30        4.4          9
## 2949        0.05         0.69           68           22        8.1          7
## 2950        0.01         0.69           62           35        4.9         11
## 2951        0.00         0.69           NA           NA                    NA
## 2952        0.00         0.69           NA           NA                    NA
## 2953        0.02         0.69           65           16        6.3         15
## 2954        0.05         0.69           NA           NA                    NA
## 2955        0.06         0.69           NA           NA                    NA
## 2956        0.06         0.69           76           65        7.4        438
## 2957        0.07         0.69           75           18        5.8        175
## 2958        0.07         0.69           50           12        3.3          4
## 2959        0.02         0.69           77           14        8.3         27
## 2960        0.12         0.69           75           49        7.6        120
## 2961        0.06         0.69           NA           NA                    NA
## 2962        0.02         0.69           84           23        8.5         21
## 2963        0.09         0.69           77           56        6.1        173
## 2964        0.06         0.69           NA           NA          8          4
## 2965        0.13         0.69           82           37        7.7         55
## 2966        0.06         0.68           NA           NA                    NA
## 2967        0.09         0.68           78           44        8.7         54
## 2968        0.01         0.68           63            8          9          4
## 2969        0.10         0.68           81           28        7.3         20
## 2970        0.07         0.68           68           61        6.4         87
## 2971        0.04         0.68           NA           NA                    NA
## 2972        0.06         0.68           NA           NA        tbd         NA
## 2973        0.02         0.68           89           22        8.8         24
## 2974        0.04         0.68           NA           NA                    NA
## 2975        0.06         0.68           70           43        7.1         17
## 2976        0.06         0.68           66           49        6.9        122
## 2977        0.03         0.68           89           29          8         12
## 2978        0.04         0.68           NA           NA                    NA
## 2979        0.08         0.68           85           46        8.8        172
## 2980        0.02         0.68           72           21        8.1         20
## 2981        0.11         0.68           67           41        7.1        178
## 2982        0.09         0.68           85           46        8.5        111
## 2983        0.08         0.68           82           42        8.6         12
## 2984        0.03         0.68           NA           NA                    NA
## 2985        0.04         0.68           NA           NA                    NA
## 2986        0.04         0.68           82            8        8.4        162
## 2987        0.11         0.68           42           27        6.2         45
## 2988        0.01         0.68           80           39        7.5         22
## 2989        0.02         0.68           85           47        8.7         20
## 2990        0.07         0.68           NA           NA                    NA
## 2991        0.06         0.68           76           24        8.9         81
## 2992        0.06         0.68           79           18        7.8        397
## 2993        0.05         0.68           69            7        6.8          5
## 2994        0.18         0.68           71            4        tbd         NA
## 2995        0.09         0.68           74           28        tbd         NA
## 2996        0.02         0.67           82            6        8.8         37
## 2997        0.02         0.67           84           38        8.8         33
## 2998        0.07         0.67           84           59        7.3        561
## 2999        0.11         0.67           60           33          7         40
## 3000        0.04         0.67           NA           NA                    NA
## 3001        0.08         0.67           89           45        8.6       2386
## 3002        0.04         0.67           NA           NA                    NA
## 3003        0.03         0.67           NA           NA                    NA
## 3004        0.15         0.67           NA           NA                    NA
## 3005        0.00         0.67           NA           NA                    NA
## 3006        0.04         0.67           NA           NA                    NA
## 3007        0.06         0.67           79           24        7.3        430
## 3008        0.06         0.67           74           23          9         33
## 3009        0.02         0.67           78           54        8.9         89
## 3010        0.00         0.67           NA           NA                    NA
## 3011        0.14         0.67           NA           NA                    NA
## 3012        0.11         0.67           71           31        7.1         98
## 3013        0.10         0.67           67           38          6         39
## 3014        0.04         0.67           NA           NA                    NA
## 3015        0.06         0.67           81           39        7.2        139
## 3016        0.05         0.67           63           54        6.8        121
## 3017        0.01         0.67           NA           NA                    NA
## 3018        0.12         0.67           NA           NA                    NA
## 3019        0.09         0.67           NA           NA                    NA
## 3020        0.14         0.67           NA           NA                    NA
## 3021        0.10         0.67           86           42        7.7        127
## 3022        0.01         0.67           NA           NA                    NA
## 3023        0.02         0.67           68            8        7.1         11
## 3024        0.06         0.67           73            9        6.4         20
## 3025        0.01         0.67           66            7        6.8          5
## 3026        0.05         0.67           NA           NA                    NA
## 3027        0.02         0.67           NA           NA                    NA
## 3028        0.00         0.66           NA           NA                    NA
## 3029        0.04         0.66           69            4        tbd         NA
## 3030        0.02         0.66           81           38        8.8          9
## 3031        0.02         0.66           77           41        7.2         25
## 3032        0.05         0.66           62           12        7.2         11
## 3033        0.10         0.66           67           26        6.9          9
## 3034        0.14         0.66           78           13        8.1         21
## 3035        0.11         0.66           NA           NA          7          5
## 3036        0.10         0.66           65           46        6.3         43
## 3037        0.09         0.66           65            6        6.6         17
## 3038        0.13         0.66           80           35        7.7        107
## 3039        0.05         0.66           NA           NA        tbd         NA
## 3040        0.08         0.66           61           21        7.9          9
## 3041        0.26         0.66           NA           NA                    NA
## 3042        0.11         0.66           NA           NA        6.5         17
## 3043        0.04         0.66           NA           NA                    NA
## 3044        0.04         0.66           58           10        8.3         12
## 3045        0.08         0.66           74           13          8         27
## 3046        0.06         0.66           NA           NA                    NA
## 3047        0.02         0.66           63           11        tbd         NA
## 3048        0.09         0.66           69           32        2.9         52
## 3049        0.06         0.66           NA           NA        tbd         NA
## 3050        0.00         0.66           NA           NA                    NA
## 3051        0.02         0.66           70           21        tbd         NA
## 3052        0.05         0.66           83           70        7.8        237
## 3053        0.05         0.66           NA           NA                    NA
## 3054        0.06         0.66           88           52        8.4         71
## 3055        0.02         0.66           70            7          6         12
## 3056        0.00         0.66           NA           NA                    NA
## 3057        0.08         0.66           NA           NA        tbd         NA
## 3058        0.02         0.66           NA           NA                    NA
## 3059        0.01         0.66           NA           NA        tbd         NA
## 3060        0.08         0.66           78           30        8.7         20
## 3061        0.04         0.66           NA           NA                    NA
## 3062        0.05         0.66           83           44        6.6         86
## 3063        0.12         0.66           81           56        7.9        515
## 3064        0.10         0.66           NA           NA                    NA
## 3065        0.08         0.66           NA           NA        7.8          5
## 3066        0.05         0.66           92           35        8.7        465
## 3067        0.03         0.66           81           30          9         15
## 3068        0.07         0.66           94           68        8.5       7322
## 3069        0.01         0.66           NA           NA                    NA
## 3070        0.16         0.66           64            7        7.1          7
## 3071        0.08         0.66           67           37        7.1        199
## 3072        0.10         0.66           76           33        6.6         42
## 3073        0.01         0.66           71            7        7.4          5
## 3074        0.05         0.66           63           44        7.3         47
## 3075        0.00         0.66           71           30        7.9         35
## 3076        0.01         0.66           60           30        6.9         29
## 3077        0.11         0.66           NA           NA        7.8         24
## 3078        0.01         0.66           77            8        tbd         NA
## 3079        0.05         0.66           71           35        7.8         61
## 3080        0.04         0.66           NA           NA                    NA
## 3081        0.02         0.66           88           64          8         69
## 3082        0.07         0.66           69            4        tbd         NA
## 3083        0.00         0.66           NA           NA                    NA
## 3084        0.04         0.66           NA           NA                    NA
## 3085        0.06         0.65           70           17        6.7         44
## 3086        0.41         0.65           73            6        8.6          5
## 3087        0.08         0.65           73           39        8.3        265
## 3088        0.06         0.65           NA           NA                    NA
## 3089        0.06         0.65           NA           NA                    NA
## 3090        0.10         0.65           NA           NA                    NA
## 3091        0.10         0.65           63           30        6.3         26
## 3092        0.05         0.65           74           36          9         54
## 3093        0.05         0.65           NA           NA        tbd         NA
## 3094        0.09         0.65           NA           NA                    NA
## 3095        0.02         0.65           89           50        8.5        161
## 3096        0.08         0.65           60           20        8.9          7
## 3097        0.07         0.65           76           32        7.4         25
## 3098        0.01         0.65           60           23        6.6          5
## 3099        0.08         0.65           47           11          6          6
## 3100        0.01         0.65           NA           NA                    NA
## 3101        0.10         0.65           82           34        7.2          9
## 3102        0.04         0.65           NA           NA                    NA
## 3103        0.10         0.65           85           51        7.8        192
## 3104        0.16         0.65           NA           NA                    NA
## 3105        0.07         0.65           84           41        7.8         29
## 3106        0.01         0.65           89           34        9.4         97
## 3107        0.03         0.65           60           35        7.4         19
## 3108        0.04         0.65           NA           NA                    NA
## 3109        0.04         0.65           80           61        8.4        179
## 3110        0.05         0.65           63           55        9.1         88
## 3111        0.15         0.65           NA           NA                    NA
## 3112        0.01         0.65           NA           NA                    NA
## 3113        0.08         0.65           77           48        8.8         43
## 3114        0.09         0.65           68           29        6.7         48
## 3115        0.14         0.65           NA           NA                    NA
## 3116        0.60         0.65           NA           NA                    NA
## 3117        0.04         0.65           NA           NA                    NA
## 3118        0.12         0.65           59           12        tbd         NA
## 3119        0.06         0.65           NA           NA                    NA
## 3120        0.06         0.65           80           51        6.9         20
## 3121        0.07         0.65           54           11        7.5         26
## 3122        0.00         0.65           NA           NA                    NA
## 3123        0.14         0.65           64            8        tbd         NA
## 3124        0.04         0.65           64            5          8         20
## 3125        0.05         0.65           NA           NA        tbd         NA
## 3126        0.00         0.65           NA           NA                    NA
## 3127        0.10         0.65           NA           NA                    NA
## 3128        0.15         0.64           64           31        7.6        358
## 3129        0.44         0.64           NA           NA        8.3         13
## 3130        0.01         0.64           67           23        6.6         12
## 3131        0.05         0.64           84           10        7.7       1470
## 3132        0.07         0.64           54           12        6.2         29
## 3133        0.08         0.64           60           16          8         44
## 3134        0.08         0.64           64           38          8        129
## 3135        0.05         0.64           68            5        7.7         25
## 3136        0.02         0.64           84           34        8.4         49
## 3137        0.07         0.64           NA           NA        7.2        168
## 3138        0.06         0.64           72           21        7.7         22
## 3139        0.09         0.64           60           38          7         32
## 3140        0.06         0.64           50            5          4         65
## 3141        0.05         0.64           NA           NA                    NA
## 3142        0.09         0.64           74           32        7.4         28
## 3143        0.02         0.64           83           51        7.4         27
## 3144        0.08         0.64           58           24        7.2         13
## 3145        0.03         0.64           79           30        6.4         15
## 3146        0.01         0.64           NA           NA                    NA
## 3147        0.05         0.64           NA           NA                    NA
## 3148        0.02         0.64           NA           NA                    NA
## 3149        0.01         0.64           NA           NA                    NA
## 3150        0.06         0.64           61           39        6.6         48
## 3151        0.03         0.64           85           41        5.5        275
## 3152        0.04         0.64           NA           NA                    NA
## 3153        0.01         0.64           88           20        7.7         34
## 3154        0.04         0.64           81           45        8.9         62
## 3155        0.02         0.64           61           37        7.9         29
## 3156        0.07         0.64           75           38        7.3         31
## 3157        0.05         0.64           67           18        8.2         10
## 3158        0.10         0.64           88           56        7.7        569
## 3159        0.07         0.64           NA           NA        tbd         NA
## 3160        0.01         0.64           NA           NA                    NA
## 3161        0.01         0.64           78           10        tbd         NA
## 3162        0.05         0.64           64           18        5.9        176
## 3163        0.05         0.64           57           33        7.4         30
## 3164        0.08         0.64           NA           NA                    NA
## 3165        0.01         0.64           NA           NA                    NA
## 3166        0.01         0.64           NA           NA                    NA
## 3167        0.09         0.64           84           22        6.8         60
## 3168        0.07         0.64           74           34        7.7        109
## 3169        0.06         0.64           74           31        5.1        336
## 3170        0.08         0.64           63           25        5.7         12
## 3171        0.08         0.64           67           34          7         36
## 3172        0.09         0.63           82           44        7.3         41
## 3173        0.04         0.63           NA           NA                    NA
## 3174        0.10         0.63           NA           NA        7.2         64
## 3175        0.44         0.63           73            9        tbd         NA
## 3176        0.05         0.63           81           50          8         45
## 3177        0.04         0.63           NA           NA        tbd         NA
## 3178        0.00         0.63           NA           NA                    NA
## 3179        0.04         0.63           91           10        6.9         36
## 3180        0.08         0.63           82           45        4.5       4533
## 3181        0.03         0.63           78           24        8.8          5
## 3182        0.05         0.63           73           28        6.8         10
## 3183        0.04         0.63           NA           NA                    NA
## 3184        0.04         0.63           88           11        7.7         11
## 3185        0.00         0.63           NA           NA                    NA
## 3186        0.06         0.63           55           58          7        110
## 3187        0.04         0.63           80           17        6.7       1064
## 3188        0.00         0.63           NA           NA                    NA
## 3189        0.09         0.63           78           18        7.7         18
## 3190        0.01         0.63           NA           NA                    NA
## 3191        0.01         0.63           NA           NA                    NA
## 3192        0.01         0.63           NA           NA                    NA
## 3193        0.09         0.63           44            7        6.5         16
## 3194        0.04         0.63           60           45        7.1         64
## 3195        0.00         0.63           NA           NA                    NA
## 3196        0.07         0.63           68           24        7.6         21
## 3197        0.11         0.63           71           58        7.4         77
## 3198        0.05         0.63           32           30          4        410
## 3199        0.00         0.63           70           22        3.6         81
## 3200        0.03         0.63           82           31        8.4         32
## 3201        0.11         0.63           NA           NA                    NA
## 3202        0.01         0.63           NA           NA                    NA
## 3203        0.14         0.63           75           40          7         20
## 3204        0.05         0.63           89           25        8.3        296
## 3205        0.08         0.63           82           17        5.8         28
## 3206        0.05         0.63           62            7        4.6         20
## 3207        0.04         0.63           NA           NA                    NA
## 3208        0.06         0.63           80           76        8.4        178
## 3209        0.34         0.63           93           69        9.3        327
## 3210        0.05         0.63           89           40        8.3        317
## 3211        0.14         0.63           NA           NA        7.1         24
## 3212        0.04         0.63           88           10        7.7          7
## 3213        0.07         0.63           76           47        6.5       1223
## 3214        0.04         0.63           54           10        5.3          4
## 3215        0.11         0.63           78           28        5.5        157
## 3216        0.02         0.63           62           10        tbd         NA
## 3217        0.06         0.63           NA           NA                    NA
## 3218        0.05         0.63           NA           NA        tbd         NA
## 3219        0.10         0.63           76           43        7.2         14
## 3220        0.06         0.63           79           53        8.5        125
## 3221        0.05         0.62           90           35        8.3        366
## 3222        0.00         0.62           NA           NA                    NA
## 3223        0.00         0.62           NA           NA                    NA
## 3224        0.03         0.62           87           28        8.5         39
## 3225        0.03         0.62           77           40        7.7         15
## 3226        0.04         0.62           NA           NA                    NA
## 3227        0.04         0.62           78           30        8.4         38
## 3228        0.04         0.62           NA           NA                    NA
## 3229        0.04         0.62           NA           NA        tbd         NA
## 3230        0.02         0.62           82           14        9.2          5
## 3231        0.05         0.62           NA           NA        7.2         11
## 3232        0.01         0.62           NA           NA                    NA
## 3233        0.02         0.62           89           18        8.2         14
## 3234        0.12         0.62           70           43        6.1         44
## 3235        0.08         0.62           71           31          8         10
## 3236        0.09         0.62           75            5          6          7
## 3237        0.06         0.62           71           16        7.3         20
## 3238        0.06         0.62           46           34        6.8         26
## 3239        0.05         0.62           NA           NA        tbd         NA
## 3240        0.10         0.62           NA           NA                    NA
## 3241        0.02         0.62           93           52        8.3        115
## 3242        0.03         0.62           72            6        9.2         25
## 3243        0.02         0.62           NA           NA                    NA
## 3244        0.10         0.62           86           44          8         48
## 3245        0.04         0.62           NA           NA        tbd         NA
## 3246        0.08         0.62           48           14        6.8          4
## 3247        0.01         0.62           NA           NA                    NA
## 3248        0.06         0.62           80           73        8.6        178
## 3249        0.04         0.62           NA           NA                    NA
## 3250        0.08         0.62           68           23        8.6          8
## 3251        0.05         0.62           67           20        4.6        274
## 3252        0.06         0.62           NA           NA                    NA
## 3253        0.00         0.62           NA           NA                    NA
## 3254        0.02         0.62           NA           NA                    NA
## 3255        0.00         0.62           NA           NA                    NA
## 3256        0.00         0.62           NA           NA                    NA
## 3257        0.06         0.62           74           69        7.8        112
## 3258        0.01         0.62           70           17        7.9         35
## 3259        0.00         0.62           NA           NA        8.2         29
## 3260        0.04         0.62           88           20        7.5         17
## 3261        0.00         0.62           NA           NA                    NA
## 3262        0.00         0.62           NA           NA                    NA
## 3263        0.00         0.62           NA           NA                    NA
## 3264        0.04         0.62           NA           NA                    NA
## 3265        0.05         0.62           80           50        6.1         25
## 3266        0.06         0.62           NA           NA          6          4
## 3267        0.07         0.62           50           32        6.3          6
## 3268        0.13         0.62           NA           NA                    NA
## 3269        0.00         0.61           NA           NA                    NA
## 3270        0.07         0.61           48            9        4.3          7
## 3271        0.07         0.61           68           58        8.4        263
## 3272        0.09         0.61           73           33        4.3         87
## 3273        0.03         0.61           NA           NA                    NA
## 3274        0.05         0.61           82           30          7         37
## 3275        0.04         0.61           NA           NA        5.5          6
## 3276        0.57         0.61           NA           NA                    NA
## 3277        0.02         0.61           72           25        8.6         12
## 3278        0.01         0.61           58           26        8.8         13
## 3279        0.11         0.61           70           61        6.4         55
## 3280        0.05         0.61           56            6          6          7
## 3281        0.05         0.61           73           13        7.4         21
## 3282        0.06         0.61           NA           NA        tbd         NA
## 3283        0.01         0.61           NA           NA                    NA
## 3284        0.03         0.61           81           42          7        106
## 3285        0.10         0.61           75           23        7.6        259
## 3286        0.14         0.61           91           48        9.3        316
## 3287        0.08         0.61           72           20        8.5          8
## 3288        0.01         0.61           NA           NA          8          5
## 3289        0.09         0.61           70           29        6.9         13
## 3290        0.05         0.61           86           55        8.7         96
## 3291        0.15         0.61           71           47        6.3         28
## 3292        0.01         0.61           49            7        6.8          6
## 3293        0.08         0.61           81           29        8.1         12
## 3294        0.14         0.61           NA           NA        6.6          8
## 3295        0.08         0.61           84           61        8.1        304
## 3296        0.00         0.61           NA           NA                    NA
## 3297        0.14         0.61           87           82        8.9        391
## 3298        0.04         0.61           NA           NA                    NA
## 3299        0.03         0.61           90           35        8.6        115
## 3300        0.04         0.61           NA           NA                    NA
## 3301        0.05         0.61           46           43          3         67
## 3302        0.10         0.61           77           24        6.3        130
## 3303        0.05         0.61           70           28        5.9         34
## 3304        0.09         0.61           70           45        7.1         51
## 3305        0.07         0.61           79           43        5.9         33
## 3306        0.05         0.61           64           29        5.3         26
## 3307        0.01         0.61           85           30        7.3         70
## 3308        0.07         0.61           58           26        5.4         77
## 3309        0.01         0.61           76            5        tbd         NA
## 3310        0.05         0.61           NA           NA                    NA
## 3311        0.05         0.61           NA           NA                    NA
## 3312        0.01         0.61           71            9          6          8
## 3313        0.04         0.61           NA           NA                    NA
## 3314        0.01         0.61           62           19        8.9         39
## 3315        0.02         0.61           89           12        tbd         NA
## 3316        0.01         0.61           84            8        8.7         11
## 3317        0.00         0.61           NA           NA                    NA
## 3318        0.01         0.61           NA           NA                    NA
## 3319        0.07         0.61           67           11        7.3          4
## 3320        0.08         0.61           75           34        7.7         35
## 3321        0.04         0.61           59           14        5.9          8
## 3322        0.03         0.61           NA           NA        tbd         NA
## 3323        0.01         0.60           86            9        7.7          9
## 3324        0.09         0.60           NA           NA                    NA
## 3325        0.01         0.60           NA           NA        tbd         NA
## 3326        0.05         0.60           NA           NA        8.2          6
## 3327        0.08         0.60           45           28          6        137
## 3328        0.02         0.60           80           21        8.3         29
## 3329        0.11         0.60           43           25        3.6        295
## 3330        0.08         0.60           51           24        7.8         29
## 3331        0.03         0.60           64           55        7.4         69
## 3332        0.02         0.60           88           48        8.8         27
## 3333        0.00         0.60           NA           NA                    NA
## 3334        0.09         0.60           62           25        5.9        140
## 3335        0.06         0.60           NA           NA        8.3          6
## 3336        0.05         0.60           60           53        5.1        144
## 3337        0.08         0.60           72            7          6          9
## 3338        0.05         0.60           68           26        8.5         75
## 3339        0.04         0.60           NA           NA                    NA
## 3340        0.05         0.60           71           10        7.6         58
## 3341        0.29         0.60           61            9        6.7         14
## 3342        0.06         0.60           77           77        7.6         94
## 3343        0.06         0.60           32           38        4.6         23
## 3344        0.08         0.60           63           10        8.6          8
## 3345        0.08         0.60           52           29        7.5         39
## 3346        0.00         0.60           NA           NA                    NA
## 3347        0.08         0.60           87           24        8.6         94
## 3348        0.02         0.60           NA           NA                    NA
## 3349        0.01         0.60           NA           NA                    NA
## 3350        0.08         0.60           81           14        tbd         NA
## 3351        0.06         0.60           82           78        8.1        101
## 3352        0.06         0.60           43            7        4.9          8
## 3353        0.07         0.60           35           12        6.8          6
## 3354        0.05         0.60           NA           NA                    NA
## 3355        0.04         0.60           NA           NA                    NA
## 3356        0.04         0.60           NA           NA                    NA
## 3357        0.04         0.60           81           58        8.7        101
## 3358        0.06         0.60           NA           NA                    NA
## 3359        0.05         0.60           NA           NA                    NA
## 3360        0.04         0.60           NA           NA                    NA
## 3361        0.06         0.60           NA           NA        tbd         NA
## 3362        0.05         0.60           90           44        8.9        236
## 3363        0.02         0.60           NA           NA                    NA
## 3364        0.09         0.60           72           47        6.6         88
## 3365        0.00         0.60           NA           NA                    NA
## 3366        0.09         0.60           69           50        6.9         88
## 3367        0.05         0.60           72           13        7.6         45
## 3368        0.05         0.60           NA           NA                    NA
## 3369        0.04         0.60           NA           NA        tbd         NA
## 3370        0.14         0.60           NA           NA                    NA
## 3371        0.10         0.60           60           28        3.6        306
## 3372        0.09         0.60           90           62        8.3       1180
## 3373        0.08         0.60           71            5        tbd         NA
## 3374        0.00         0.60           NA           NA                    NA
## 3375        0.05         0.60           NA           NA                    NA
## 3376        0.09         0.60           NA           NA        5.2        242
## 3377        0.03         0.60           69           27        6.3         18
## 3378        0.05         0.59           NA           NA        tbd         NA
## 3379        0.08         0.59           62            8        8.1          8
## 3380        0.06         0.59           NA           NA        tbd         NA
## 3381        0.00         0.59           NA           NA                    NA
## 3382        0.12         0.59           NA           NA        3.1         42
## 3383        0.04         0.59           NA           NA                    NA
## 3384        0.06         0.59           56            9        5.8         17
## 3385        0.07         0.59           44           29        2.1         31
## 3386        0.04         0.59           NA           NA                    NA
## 3387        0.04         0.59           NA           NA                    NA
## 3388        0.02         0.59           80           16        7.9         16
## 3389        0.06         0.59           86           28          8       1093
## 3390        0.04         0.59           70            6        tbd         NA
## 3391        0.04         0.59           NA           NA                    NA
## 3392        0.08         0.59           NA           NA          8          4
## 3393        0.07         0.59           88           38        7.1         54
## 3394        0.00         0.59           83           34        8.5        180
## 3395        0.01         0.59           NA           NA                    NA
## 3396        0.06         0.59           73           19        5.6         18
## 3397        0.02         0.59           90           31        8.5         19
## 3398        0.02         0.59           62           11        7.3         22
## 3399        0.01         0.59           NA           NA                    NA
## 3400        0.07         0.59           NA           NA                    NA
## 3401        0.02         0.59           NA           NA                    NA
## 3402        0.05         0.59           72           18        5.7         75
## 3403        0.01         0.59           NA           NA                    NA
## 3404        0.01         0.59           NA           NA                    NA
## 3405        0.10         0.59           88           24        8.2       1102
## 3406        0.04         0.59           NA           NA                    NA
## 3407        0.02         0.59           73           42        7.8         47
## 3408        0.00         0.59           NA           NA                    NA
## 3409        0.23         0.59           77            8        6.8         82
## 3410        0.05         0.59           NA           NA        tbd         NA
## 3411        0.06         0.59           82           78        8.3        169
## 3412        0.04         0.59           NA           NA                    NA
## 3413        0.10         0.59           NA           NA                    NA
## 3414        0.03         0.59           74           48        4.9         44
## 3415        0.06         0.59           60           38        7.5         13
## 3416        0.08         0.59           81           26          9         20
## 3417        0.05         0.59           66            5        5.9        242
## 3418        0.01         0.59           81           25        9.6        116
## 3419        0.07         0.59           NA           NA                    NA
## 3420        0.10         0.59           NA           NA        7.7         12
## 3421        0.06         0.59           80           34        7.8         46
## 3422        0.00         0.59           NA           NA                    NA
## 3423        0.04         0.59           82           53        8.7         39
## 3424        0.06         0.59           44           14          7          8
## 3425        0.09         0.59           48           39        7.5         77
## 3426        0.06         0.58           58           30        5.1         38
## 3427        0.08         0.58           90           52        8.5       3069
## 3428        0.07         0.58           NA           NA        tbd         NA
## 3429        0.04         0.58           67           34        7.7         47
## 3430        0.14         0.58           NA           NA        tbd         NA
## 3431        0.04         0.58           77           56        6.2        124
## 3432        0.04         0.58           NA           NA                    NA
## 3433        0.04         0.58           NA           NA                    NA
## 3434        0.01         0.58           NA           NA                    NA
## 3435        0.01         0.58           58           23          8         35
## 3436        0.07         0.58           55           50        6.4         58
## 3437        0.07         0.58           68           18        5.7         29
## 3438        0.05         0.58           33            6        3.7          9
## 3439        0.08         0.58           73           35        8.2         60
## 3440        0.04         0.58           74           13          6         54
## 3441        0.04         0.58           NA           NA                    NA
## 3442        0.04         0.58           81           20        7.3         25
## 3443        0.05         0.58           NA           NA                    NA
## 3444        0.04         0.58           90           30        7.8         87
## 3445        0.04         0.58           NA           NA                    NA
## 3446        0.05         0.58           NA           NA                    NA
## 3447        0.05         0.58           68           31        5.1         15
## 3448        0.04         0.58           NA           NA                    NA
## 3449        0.05         0.58           89            7          6         96
## 3450        0.07         0.58           38           21        6.3         23
## 3451        0.06         0.58           74           17        7.7          6
## 3452        0.06         0.58           73           64        7.3         51
## 3453        0.08         0.58           70           51        7.9        181
## 3454        0.03         0.58           83           48        8.3        251
## 3455        0.04         0.58           84           46        7.8         67
## 3456        0.03         0.58           NA           NA                    NA
## 3457        0.03         0.58           NA           NA                    NA
## 3458        0.04         0.58           NA           NA                    NA
## 3459        0.07         0.58           86           33        7.5         52
## 3460        0.07         0.58           84           10        8.8         19
## 3461        0.07         0.58           77           23        6.8         13
## 3462        0.04         0.58           42            5        7.6         47
## 3463        0.04         0.58           NA           NA                    NA
## 3464        0.03         0.58           85           46        8.4         28
## 3465        0.07         0.58           NA           NA                    NA
## 3466        0.04         0.58           NA           NA                    NA
## 3467        0.01         0.58           NA           NA                    NA
## 3468        0.07         0.58           NA           NA        7.6          5
## 3469        0.01         0.58           71           53        8.3         55
## 3470        0.07         0.58           78           33        6.6         25
## 3471        0.04         0.58           NA           NA                    NA
## 3472        0.00         0.58           NA           NA                    NA
## 3473        0.03         0.58           71           49        7.1         38
## 3474        0.10         0.58           91           23        8.7        310
## 3475        0.00         0.58           NA           NA                    NA
## 3476        0.08         0.58           79           45        7.2         79
## 3477        0.04         0.58           77           14        8.7         32
## 3478        0.02         0.58           91           19        8.6         21
## 3479        0.04         0.58           NA           NA                    NA
## 3480        0.07         0.58           52           22        6.9         17
## 3481        0.08         0.58           78           27        8.5         29
## 3482        0.04         0.58           79           14          9         77
## 3483        0.00         0.58           NA           NA                    NA
## 3484        0.04         0.58           70           37        8.4         25
## 3485        0.06         0.58           NA           NA        7.8         34
## 3486        0.07         0.58           NA           NA                    NA
## 3487        0.03         0.58           90           16        8.1          8
## 3488        0.07         0.58           NA           NA        tbd         NA
## 3489        0.05         0.57           76            4        8.3          6
## 3490        0.04         0.57           NA           NA                    NA
## 3491        0.02         0.57           85           56        5.7         73
## 3492        0.07         0.57           NA           NA        tbd         NA
## 3493        0.01         0.57           85           13        8.8          4
## 3494        0.04         0.57           63           32        7.8         16
## 3495        0.00         0.57           78           22        8.4        109
## 3496        0.05         0.57           75           18        6.3        203
## 3497        0.04         0.57           NA           NA                    NA
## 3498        0.06         0.57           62           48        6.1         65
## 3499        0.01         0.57           60           25          7         12
## 3500        0.10         0.57           89           20        8.2        296
## 3501        0.04         0.57           NA           NA        tbd         NA
## 3502        0.04         0.57           NA           NA                    NA
## 3503        0.33         0.57           NA           NA        5.3          6
## 3504        0.05         0.57           82            8        4.9         62
## 3505        0.04         0.57           NA           NA        tbd         NA
## 3506        0.38         0.57           81           31          8         72
## 3507        0.02         0.57           86           21        8.5         11
## 3508        0.02         0.57           NA           NA                    NA
## 3509        0.05         0.57           87           31          8        261
## 3510        0.06         0.57           87           50        8.4        112
## 3511        0.05         0.57           NA           NA                    NA
## 3512        0.06         0.57           45           43        5.9         52
## 3513        0.08         0.57           73           27        7.9         27
## 3514        0.00         0.57           NA           NA                    NA
## 3515        0.00         0.57           NA           NA                    NA
## 3516        0.07         0.57           88           35        7.9         40
## 3517        0.08         0.57           NA           NA        3.8          4
## 3518        0.05         0.57           91           34          8         95
## 3519        0.02         0.57           71           30        7.5         13
## 3520        0.03         0.57           57           22        9.1         26
## 3521        0.04         0.57           NA           NA        tbd         NA
## 3522        0.03         0.57           NA           NA                    NA
## 3523        0.05         0.57           56           25        5.7         63
## 3524        0.07         0.57           NA           NA        tbd         NA
## 3525        0.08         0.57           77           28        8.1         33
## 3526        0.02         0.57           74           36        5.2         13
## 3527        0.00         0.57           NA           NA                    NA
## 3528        0.05         0.57           60           27        7.2        249
## 3529        0.05         0.57           80           39        7.8        126
## 3530        0.04         0.57           NA           NA          6          5
## 3531        0.02         0.57           70            8        8.9         17
## 3532        0.10         0.57           67           16        6.4        107
## 3533        0.00         0.57           NA           NA                    NA
## 3534        0.04         0.57           63           61          7         53
## 3535        0.06         0.57           74            4        6.3          8
## 3536        0.06         0.57           69           79        8.2        258
## 3537        0.07         0.57           67           11        tbd         NA
## 3538        0.05         0.57           73            7        6.9         11
## 3539        0.05         0.57           66           31        5.3         13
## 3540        0.02         0.57           87           32        8.3         19
## 3541        0.05         0.57           58           35        7.7         70
## 3542        0.12         0.57           75           36        7.5         20
## 3543        0.04         0.57           NA           NA                    NA
## 3544        0.07         0.57           73           37        8.6         35
## 3545        0.13         0.57           78           32        8.2         28
## 3546        0.06         0.57           NA           NA        tbd         NA
## 3547        0.03         0.57           78           33        8.1        122
## 3548        0.07         0.57           77           66          8         96
## 3549        0.06         0.56           62            6          8          4
## 3550        0.04         0.56           83           10        8.9         45
## 3551        0.02         0.56           NA           NA          8         47
## 3552        0.02         0.56           77           29        7.3         29
## 3553        0.06         0.56           83           49        8.6         59
## 3554        0.04         0.56           NA           NA        tbd         NA
## 3555        0.01         0.56           NA           NA                    NA
## 3556        0.01         0.56           NA           NA        tbd         NA
## 3557        0.04         0.56           NA           NA                    NA
## 3558        0.04         0.56           86           29        6.2       1727
## 3559        0.07         0.56           66           18        8.6         14
## 3560        0.01         0.56           77           13        8.2         11
## 3561        0.07         0.56           78           18        7.6          8
## 3562        0.05         0.56           64           11        6.5         19
## 3563        0.01         0.56           66           10        7.5          6
## 3564        0.02         0.56           81           26        8.9         12
## 3565        0.07         0.56           63            9        8.6          7
## 3566        0.04         0.56           65           10        6.9          8
## 3567        0.06         0.56           76           57        7.8        232
## 3568        0.07         0.56           NA           NA        tbd         NA
## 3569        0.07         0.56           78           47        7.6         36
## 3570        0.01         0.56           NA           NA                    NA
## 3571        0.07         0.56           55            4        8.4         16
## 3572        0.05         0.56           71           50        7.2         31
## 3573        0.07         0.56           81           18        tbd         NA
## 3574        0.04         0.56           NA           NA                    NA
## 3575        0.07         0.56           NA           NA        tbd         NA
## 3576        0.02         0.56           80           49        8.2         29
## 3577        0.09         0.56           74           35        8.1         39
## 3578        0.07         0.56           77           16        7.6          8
## 3579        0.01         0.56           NA           NA                    NA
## 3580        0.05         0.56           NA           NA                    NA
## 3581        0.04         0.56           NA           NA        tbd         NA
## 3582        0.02         0.56           80           18        9.1         22
## 3583        0.04         0.56           NA           NA                    NA
## 3584        0.06         0.56           50            4        5.8          5
## 3585        0.02         0.56           68           26        7.3         25
## 3586        0.01         0.56           NA           NA                    NA
## 3587        0.00         0.56           NA           NA                    NA
## 3588        0.07         0.56           67           22        7.8         53
## 3589        0.04         0.56           56           35        8.1         38
## 3590        0.07         0.56           68           11        7.6         14
## 3591        0.00         0.56           NA           NA                    NA
## 3592        0.07         0.56           64           41        7.3         70
## 3593        0.04         0.56           NA           NA        7.8          9
## 3594        0.00         0.56           NA           NA                    NA
## 3595        0.04         0.56           72           59        5.4         44
## 3596        0.07         0.56           56            6        6.5          8
## 3597        0.01         0.56           47            5          7          4
## 3598        0.06         0.56           72           66        7.5        128
## 3599        0.01         0.56           NA           NA                    NA
## 3600        0.02         0.56           71           36          8         41
## 3601        0.07         0.56           91           20        8.5         25
## 3602        0.00         0.56           NA           NA                    NA
## 3603        0.02         0.56           81           25        8.2         17
## 3604        0.05         0.56           72           19        5.8          4
## 3605        0.00         0.56           NA           NA                    NA
## 3606        0.08         0.56           83           73        8.5        625
## 3607        0.05         0.56           77          106        6.8       1659
## 3608        0.14         0.56           75           39        6.6         21
## 3609        0.05         0.56           58           31        6.3         32
## 3610        0.09         0.56           NA           NA        3.4        100
## 3611        0.07         0.56           59           14        6.8         17
## 3612        0.04         0.56           NA           NA        4.3         12
## 3613        0.06         0.56           77           41        7.5         80
## 3614        0.05         0.56           75           55        7.8         77
## 3615        0.07         0.56           76           17        8.3          9
## 3616        0.01         0.56           88           20        6.9         10
## 3617        0.04         0.55           78           15        9.1         35
## 3618        0.03         0.55           68            6        7.5         13
## 3619        0.05         0.55           83           64        8.4        259
## 3620        0.04         0.55           NA           NA                    NA
## 3621        0.06         0.55           84           58        8.4        208
## 3622        0.04         0.55           47            4          7          5
## 3623        0.07         0.55           80           22        8.5         35
## 3624        0.06         0.55           94           53        9.3        439
## 3625        0.02         0.55           NA           NA                    NA
## 3626        0.09         0.55           80           53        7.4        312
## 3627        0.00         0.55           NA           NA                    NA
## 3628        0.02         0.55           68           33        6.6         15
## 3629        0.04         0.55           NA           NA                    NA
## 3630        0.00         0.55           NA           NA                    NA
## 3631        0.05         0.55           81           21        5.1         69
## 3632        0.01         0.55           NA           NA                    NA
## 3633        0.04         0.55           NA           NA                    NA
## 3634        0.04         0.55           NA           NA                    NA
## 3635        0.00         0.55           NA           NA                    NA
## 3636        0.04         0.55           NA           NA        5.3         16
## 3637        0.05         0.55           67           19        7.8         19
## 3638        0.07         0.55           68           19        6.7         12
## 3639        0.04         0.55           NA           NA                    NA
## 3640        0.00         0.55           NA           NA                    NA
## 3641        0.04         0.55           NA           NA                    NA
## 3642        0.05         0.55           76           55        8.1         77
## 3643        0.02         0.55           93           22        8.4         17
## 3644        0.01         0.55           82           17        8.9         31
## 3645        0.04         0.55           NA           NA        tbd         NA
## 3646        0.07         0.55           75           30        7.7        284
## 3647        0.04         0.55           NA           NA                    NA
## 3648        0.09         0.55           NA           NA        6.4         18
## 3649        0.05         0.55           81           18        6.8         19
## 3650        0.06         0.55           92           13        8.3        127
## 3651        0.09         0.55           NA           NA                    NA
## 3652        0.04         0.55           NA           NA                    NA
## 3653        0.04         0.55           70           10          3       1463
## 3654        0.04         0.55           63           43        7.2         24
## 3655        0.00         0.55           NA           NA                    NA
## 3656        0.02         0.55           72           31        8.4          5
## 3657        0.02         0.55           67            4        6.8          6
## 3658        0.09         0.55           86           22        6.9       1611
## 3659        0.00         0.55           NA           NA                    NA
## 3660        0.00         0.55           NA           NA                    NA
## 3661        0.01         0.55           NA           NA                    NA
## 3662        0.00         0.55           NA           NA                    NA
## 3663        0.01         0.55           79           28        9.2         19
## 3664        0.05         0.55           NA           NA                    NA
## 3665        0.06         0.55           70           22        7.6          7
## 3666        0.04         0.55           NA           NA                    NA
## 3667        0.04         0.55           NA           NA                    NA
## 3668        0.02         0.55           68           25        6.7          9
## 3669        0.05         0.55           NA           NA                    NA
## 3670        0.07         0.55           76           46        7.7         63
## 3671        0.03         0.55           NA           NA                    NA
## 3672        0.07         0.55           41           14        4.8         12
## 3673        0.04         0.55           NA           NA                    NA
## 3674        0.04         0.55           NA           NA        tbd         NA
## 3675        0.02         0.55           74           61        8.5         26
## 3676        0.04         0.55           67           19        6.8          6
## 3677        0.06         0.55           82           34        7.1         15
## 3678        0.04         0.54           NA           NA        tbd         NA
## 3679        0.04         0.54           NA           NA        tbd         NA
## 3680        0.08         0.54           75           69        8.3        343
## 3681        0.19         0.54           47            8        5.6         15
## 3682        0.48         0.54           NA           NA                    NA
## 3683        0.08         0.54           77           27          8        350
## 3684        0.02         0.54           74           14        8.5          8
## 3685        0.09         0.54           80           22          6         79
## 3686        0.09         0.54           77           22        6.3         40
## 3687        0.04         0.54           NA           NA                    NA
## 3688        0.00         0.54           NA           NA                    NA
## 3689        0.07         0.54           70           43        6.5         19
## 3690        0.04         0.54           NA           NA        tbd         NA
## 3691        0.04         0.54           80           45        7.8         26
## 3692        0.00         0.54           NA           NA                    NA
## 3693        0.02         0.54           82           24        8.8         10
## 3694        0.07         0.54           66           21          7         49
## 3695        0.04         0.54           75           39        8.6         22
## 3696        0.01         0.54           NA           NA                    NA
## 3697        0.09         0.54           88           54        8.4        298
## 3698        0.00         0.54           NA           NA                    NA
## 3699        0.10         0.54           72           31        7.4         64
## 3700        0.05         0.54           82           72        7.8        295
## 3701        0.07         0.54           NA           NA                    NA
## 3702        0.07         0.54           70           21        8.1         19
## 3703        0.08         0.54           75           14        5.7          9
## 3704        0.02         0.54           58           18        7.5         20
## 3705        0.02         0.54           84           33        8.5         13
## 3706        0.01         0.54           NA           NA                    NA
## 3707        0.03         0.54           NA           NA                    NA
## 3708        0.01         0.54           NA           NA                    NA
## 3709        0.00         0.54           NA           NA                    NA
## 3710        0.07         0.54           NA           NA                    NA
## 3711        0.04         0.54           NA           NA          7          7
## 3712        0.06         0.54           84           29        8.3         23
## 3713        0.05         0.54           81           32        7.5         25
## 3714        0.05         0.54           77           83        7.9        351
## 3715        0.04         0.54           NA           NA                    NA
## 3716        0.01         0.54           85           42        8.9        141
## 3717        0.00         0.54           NA           NA                    NA
## 3718        0.03         0.54           78           57        8.6        102
## 3719        0.02         0.54           69           57          7         87
## 3720        0.04         0.54           NA           NA                    NA
## 3721        0.01         0.54           NA           NA                    NA
## 3722        0.01         0.54           87           20        8.6         18
## 3723        0.02         0.54           74           11        9.2         42
## 3724        0.00         0.54           NA           NA                    NA
## 3725        0.07         0.54           89           18        8.4         38
## 3726        0.04         0.54           55           24        5.8         52
## 3727        0.05         0.54           71           56        7.3         64
## 3728        0.03         0.54           67           50        6.6        140
## 3729        0.07         0.54           58           29        8.6         10
## 3730        0.04         0.54           80           15        8.6         16
## 3731        0.05         0.54           47            5        tbd         NA
## 3732        0.04         0.54           NA           NA        tbd         NA
## 3733        0.06         0.54           NA           NA                    NA
## 3734        0.05         0.54           81           30        5.9         92
## 3735        0.01         0.54           NA           NA                    NA
## 3736        0.04         0.54           NA           NA        tbd         NA
## 3737        0.07         0.54           59           17        8.6         14
## 3738        0.07         0.54           80           41        8.9         68
## 3739        0.05         0.54           41            8          5         11
## 3740        0.01         0.54           88           16        8.1          7
## 3741        0.07         0.54           83           41        8.7         38
## 3742        0.08         0.54           58           49        5.9         15
## 3743        0.04         0.53           46            7        4.6          7
## 3744        0.00         0.53           NA           NA                    NA
## 3745        0.07         0.53           81           21        7.9         20
## 3746        0.00         0.53           NA           NA                    NA
## 3747        0.03         0.53           NA           NA                    NA
## 3748        0.07         0.53           78           19        9.1         13
## 3749        0.05         0.53           62            5        6.5         29
## 3750        0.09         0.53           83           54        8.1         67
## 3751        0.07         0.53           NA           NA                    NA
## 3752        0.04         0.53           NA           NA        tbd         NA
## 3753        0.05         0.53           85           62        8.8         85
## 3754        0.03         0.53           78           26        8.1         52
## 3755        0.07         0.53           75           34        9.3         49
## 3756        0.01         0.53           NA           NA                    NA
## 3757        0.07         0.53           78           19        8.3         13
## 3758        0.03         0.53           51           16        4.6         14
## 3759        0.05         0.53           87           49        8.8        102
## 3760        0.07         0.53           58           24        8.1         21
## 3761        0.05         0.53           82           62        8.3        288
## 3762        0.02         0.53           NA           NA                    NA
## 3763        0.07         0.53           78           23        8.3          8
## 3764        0.03         0.53           NA           NA                    NA
## 3765        0.07         0.53           NA           NA        7.9          8
## 3766        0.02         0.53           78           30        7.7         14
## 3767        0.06         0.53           62           38        7.1         46
## 3768        0.05         0.53           70           17        7.5         20
## 3769        0.03         0.53           NA           NA                    NA
## 3770        0.05         0.53           69           18        6.9         49
## 3771        0.00         0.53           NA           NA                    NA
## 3772        0.04         0.53           91           62        6.8       4052
## 3773        0.00         0.53           NA           NA                    NA
## 3774        0.03         0.53           NA           NA        tbd         NA
## 3775        0.00         0.53           NA           NA                    NA
## 3776        0.02         0.53           82           43        8.5         11
## 3777        0.01         0.53           89           65        8.4         66
## 3778        0.02         0.53           72           42          7         15
## 3779        0.07         0.53           71           24        8.2         22
## 3780        0.03         0.53           59           23        6.6         10
## 3781        0.07         0.53           63           26        6.3         27
## 3782        0.02         0.53           NA           NA                    NA
## 3783        0.04         0.53           72           57        8.4         83
## 3784        0.03         0.53           NA           NA                    NA
## 3785        0.01         0.53           NA           NA                    NA
## 3786        0.00         0.53           69           13        7.6          9
## 3787        0.04         0.53           NA           NA        tbd         NA
## 3788        0.01         0.53           81           36        8.5         11
## 3789        0.02         0.53           NA           NA                    NA
## 3790        0.05         0.53           NA           NA          9          5
## 3791        0.03         0.53           NA           NA                    NA
## 3792        0.04         0.53           88           62        8.3        833
## 3793        0.05         0.53           56            9        tbd         NA
## 3794        0.14         0.53           73           22        7.7         22
## 3795        0.04         0.53           NA           NA        6.1         18
## 3796        0.05         0.53           75            7        8.3          4
## 3797        0.04         0.53           NA           NA        tbd         NA
## 3798        0.07         0.53           69           24        7.8         22
## 3799        0.08         0.53           61           12        6.4          9
## 3800        0.04         0.53           47            5        5.4         10
## 3801        0.10         0.53           43           41        3.9         70
## 3802        0.05         0.53           60            8        tbd         NA
## 3803        0.01         0.53           82           13        8.7         23
## 3804        0.09         0.53           91           27        8.6       1847
## 3805        0.07         0.53           68           36        7.7         24
## 3806        0.07         0.53           84           52        8.5         72
## 3807        0.00         0.53           NA           NA                    NA
## 3808        0.04         0.53           76           56        7.3         56
## 3809        0.05         0.53           NA           NA        5.1        235
## 3810        0.00         0.53           NA           NA                    NA
## 3811        0.00         0.53           NA           NA                    NA
## 3812        0.03         0.53           NA           NA                    NA
## 3813        0.08         0.53           83           57        7.7        288
## 3814        0.07         0.53           66           21          8         23
## 3815        0.01         0.52           81           21          8         25
## 3816        0.00         0.52           82           24        8.4         16
## 3817        0.03         0.52           55            8                    NA
## 3818        0.07         0.52           NA           NA        7.2          6
## 3819        0.08         0.52           66           11        8.4         16
## 3820        0.00         0.52           NA           NA                    NA
## 3821        0.10         0.52           76           18        6.2         12
## 3822        0.03         0.52           NA           NA                    NA
## 3823        0.05         0.52           77           68          8        114
## 3824        0.02         0.52           69           27        8.2         21
## 3825        0.04         0.52           41           15          4         21
## 3826        0.05         0.52           79           51        7.8         19
## 3827        0.39         0.52           46           10        5.2          6
## 3828        0.03         0.52           89           15        9.1         37
## 3829        0.16         0.52           68           23        7.2         14
## 3830        0.03         0.52           73           19        8.5         36
## 3831        0.05         0.52           87           17          9        126
## 3832        0.02         0.52           68           46        7.1         93
## 3833        0.04         0.52           73           37        5.3         19
## 3834        0.04         0.52           70            4        tbd         NA
## 3835        0.07         0.52           86           61        8.9         51
## 3836        0.04         0.52           79           26        6.9         22
## 3837        0.02         0.52           90           14        8.2         15
## 3838        0.04         0.52           56           12        7.3         13
## 3839        0.04         0.52           76           25        4.2         22
## 3840        0.03         0.52           68            5        tbd         NA
## 3841        0.04         0.52           71            5        8.1         14
## 3842        0.01         0.52           NA           NA                    NA
## 3843        0.04         0.52           75           32        7.8         15
## 3844        0.13         0.52           NA           NA                    NA
## 3845        0.03         0.52           NA           NA                    NA
## 3846        0.08         0.52           61           33        3.7         78
## 3847        0.11         0.52           65           21        3.9          8
## 3848        0.03         0.52           NA           NA                    NA
## 3849        0.08         0.52           68           45        6.6        425
## 3850        0.04         0.52           78           15        tbd         NA
## 3851        0.00         0.52           NA           NA                    NA
## 3852        0.06         0.52           82           43        7.1         96
## 3853        0.07         0.52           81           26        8.4         57
## 3854        0.10         0.52           78           40        7.8        107
## 3855        0.02         0.52           79           55        7.8         29
## 3856        0.01         0.52           52            5        tbd         NA
## 3857        0.04         0.52           74           22        8.1         22
## 3858        0.07         0.52           68           44        8.2         56
## 3859        0.04         0.52           73           72          8        227
## 3860        0.03         0.52           NA           NA                    NA
## 3861        0.00         0.52           NA           NA                    NA
## 3862        0.07         0.52           80           41        7.9         26
## 3863        0.04         0.52           NA           NA                    NA
## 3864        0.04         0.52           78           51        7.5        150
## 3865        0.01         0.52           90           20          8          6
## 3866        0.04         0.52           58           18        7.9         22
## 3867        0.00         0.52           78           29        8.6         35
## 3868        0.03         0.52           77           14        7.9         30
## 3869        0.01         0.52           69           11        8.1         12
## 3870        0.03         0.52           NA           NA                    NA
## 3871        0.02         0.52           NA           NA                    NA
## 3872        0.09         0.52           NA           NA                    NA
## 3873        0.04         0.52           NA           NA                    NA
## 3874        0.05         0.52           70           10        7.5          4
## 3875        0.03         0.52           81            6        8.8          9
## 3876        0.07         0.52           NA           NA                    NA
## 3877        0.11         0.51           NA           NA                    NA
## 3878        0.03         0.51           74           22        8.2         19
## 3879        0.05         0.51           71           56        6.1        113
## 3880        0.04         0.51           NA           NA                    NA
## 3881        0.09         0.51           76           23        7.3         18
## 3882        0.06         0.51           NA           NA        tbd         NA
## 3883        0.04         0.51           59           35        5.5         22
## 3884        0.01         0.51           NA           NA                    NA
## 3885        0.07         0.51           47           14        6.3          7
## 3886        0.04         0.51           70           26        7.7         14
## 3887        0.03         0.51           NA           NA                    NA
## 3888        0.07         0.51           53           17        8.4          8
## 3889        0.04         0.51           53           55        6.4        229
## 3890        0.01         0.51           94           19        7.7         17
## 3891        0.00         0.51           NA           NA                    NA
## 3892        0.07         0.51           74           16        7.8         12
## 3893        0.06         0.51           77           71        8.2        298
## 3894        0.03         0.51           NA           NA                    NA
## 3895        0.06         0.51           67           46        7.4        139
## 3896        0.00         0.51           NA           NA                    NA
## 3897        0.04         0.51           64            9        7.5          4
## 3898        0.05         0.51           80           43        8.4         18
## 3899        0.04         0.51           NA           NA        6.2          6
## 3900        0.08         0.51           34           14        3.6        196
## 3901        0.04         0.51           76           26        7.6         38
## 3902        0.05         0.51           69           18        7.4         13
## 3903        0.10         0.51           55            8        4.8          4
## 3904        0.01         0.51           NA           NA                    NA
## 3905        0.00         0.51           NA           NA                    NA
## 3906        0.01         0.51           NA           NA                    NA
## 3907        0.02         0.51           NA           NA                    NA
## 3908        0.02         0.51           85           19        8.2         11
## 3909        0.05         0.51           56           10          7          4
## 3910        0.04         0.51           78           24        7.8        314
## 3911        0.03         0.51           NA           NA                    NA
## 3912        0.05         0.51           82           13        8.4         17
## 3913        0.01         0.51           62            4        8.8          8
## 3914        0.04         0.51           74           23        8.1         21
## 3915        0.04         0.51           75           45        8.4         55
## 3916        0.05         0.51           91           67        8.6       3542
## 3917        0.02         0.51           62           26        7.3         24
## 3918        0.07         0.51           76           11        4.6         51
## 3919        0.12         0.51           80           52        6.2         45
## 3920        0.06         0.51           NA           NA                    NA
## 3921        0.04         0.51           56           29        7.5         33
## 3922        0.05         0.51           70           16        7.7         67
## 3923        0.04         0.51           NA           NA        tbd         NA
## 3924        0.02         0.51           66            7        tbd         NA
## 3925        0.06         0.51           71            4        4.8          4
## 3926        0.08         0.51           NA           NA          6         21
## 3927        0.00         0.51           NA           NA                    NA
## 3928        0.01         0.51           73           26          7         21
## 3929        0.02         0.51           82           35        8.1          8
## 3930        0.06         0.51           76           54        7.8        191
## 3931        0.01         0.51           NA           NA                    NA
## 3932        0.06         0.51           78           30        8.4          5
## 3933        0.04         0.51           68            8        tbd         NA
## 3934        0.06         0.51           NA           NA                    NA
## 3935        0.04         0.51           77           47        5.6         39
## 3936        0.03         0.51           NA           NA                    NA
## 3937        0.05         0.51           73           69        8.2        141
## 3938        0.01         0.50           56            4        tbd         NA
## 3939        0.07         0.50           55           41        7.2         25
## 3940        0.06         0.50           51            9        7.5          6
## 3941        0.05         0.50           47            8        tbd         NA
## 3942        0.01         0.50           NA           NA                    NA
## 3943        0.04         0.50           88           41        8.4         61
## 3944        0.06         0.50           83           34        8.4         60
## 3945        0.04         0.50           81           50        7.8         46
## 3946        0.02         0.50           86           33        7.6         12
## 3947        0.00         0.50           NA           NA                    NA
## 3948        0.07         0.50           81           30        tbd         NA
## 3949        0.04         0.50           62           16        6.7         12
## 3950        0.01         0.50           60           10        6.5          4
## 3951        0.03         0.50           NA           NA                    NA
## 3952        0.06         0.50           44           13          7         11
## 3953        0.03         0.50           NA           NA        tbd         NA
## 3954        0.04         0.50           NA           NA                    NA
## 3955        0.06         0.50           83           36        8.4        104
## 3956        0.06         0.50           NA           NA        tbd         NA
## 3957        0.01         0.50           NA           NA                    NA
## 3958        0.09         0.50           54           30        6.9         28
## 3959        0.06         0.50           73            7        6.5         36
## 3960        0.06         0.50           75           13        7.7          6
## 3961        0.02         0.50           83           33        8.7         36
## 3962        0.07         0.50           78           36        6.6         55
## 3963        0.04         0.50           63           31        7.1         24
## 3964        0.15         0.50           80           18        7.3         29
## 3965        0.12         0.50           NA           NA        6.6          9
## 3966        0.07         0.50           71           60        7.5        169
## 3967        0.08         0.50           76           37        7.3         50
## 3968        0.02         0.50           78           60        7.8        113
## 3969        0.09         0.50           NA           NA                    NA
## 3970        0.05         0.50           72           56          6         96
## 3971        0.01         0.50           NA           NA                    NA
## 3972        0.06         0.50           NA           NA                    NA
## 3973        0.06         0.50           81           22        8.3          8
## 3974        0.01         0.50           88           20        9.1         26
## 3975        0.08         0.50           NA           NA                    NA
## 3976        0.00         0.50           NA           NA                    NA
## 3977        0.04         0.50           59           29        6.3          9
## 3978        0.03         0.50           NA           NA                    NA
## 3979        0.02         0.50           83           64        8.7         25
## 3980        0.03         0.50           66           11        8.2          9
## 3981        0.03         0.50           68           19        6.4         22
## 3982        0.05         0.50           56           23        tbd         NA
## 3983        0.04         0.50           65           10        7.4          5
## 3984        0.04         0.50           89           61        8.1        140
## 3985        0.06         0.50           NA           NA                    NA
## 3986        0.06         0.50           65            8        7.3          8
## 3987        0.03         0.50           NA           NA        7.3          4
## 3988        0.07         0.50           NA           NA          7          4
## 3989        0.03         0.50           68           37        8.9         46
## 3990        0.04         0.50           80           42        8.2         30
## 3991        0.01         0.50           82           30        8.9         17
## 3992        0.06         0.50           80           25        8.7         16
## 3993        0.00         0.50           NA           NA                    NA
## 3994        0.06         0.50           67           21          9         26
## 3995        0.01         0.50           84           17        8.4         16
## 3996        0.00         0.50           NA           NA                    NA
## 3997        0.03         0.50           NA           NA                    NA
## 3998        0.05         0.50           69           79        7.3         86
## 3999        0.07         0.50           NA           NA        8.2         29
## 4000        0.07         0.50           64           42        7.8         19
## 4001        0.06         0.50           50           19        7.3          6
## 4002        0.01         0.50           NA           NA                    NA
## 4003        0.06         0.50           NA           NA        tbd         NA
## 4004        0.01         0.50           NA           NA                    NA
## 4005        0.01         0.50           NA           NA                    NA
## 4006        0.04         0.50           70           67        8.1        157
## 4007        0.04         0.49           81           35          8         16
## 4008        0.04         0.49           61           46          5          6
## 4009        0.03         0.49           75           59        7.2         56
## 4010        0.02         0.49           83           35        8.4         33
## 4011        0.03         0.49           54           22          7         28
## 4012        0.04         0.49           NA           NA        6.7          6
## 4013        0.01         0.49           70            4        tbd         NA
## 4014        0.04         0.49           55           57        5.5         31
## 4015        0.07         0.49           NA           NA        7.6         35
## 4016        0.04         0.49           57           16        5.6          7
## 4017        0.00         0.49           NA           NA                    NA
## 4018        0.05         0.49           84           42        6.9         56
## 4019        0.03         0.49           NA           NA        tbd         NA
## 4020        0.01         0.49           NA           NA                    NA
## 4021        0.04         0.49           81           65        7.6         38
## 4022        0.04         0.49           NA           NA        tbd         NA
## 4023        0.05         0.49           58           34        7.2         46
## 4024        0.07         0.49           69           42        7.9         42
## 4025        0.02         0.49           66           13        7.6         28
## 4026        0.03         0.49           59           34        6.5        144
## 4027        0.01         0.49           64           25        6.9         20
## 4028        0.04         0.49           57           37        5.3         54
## 4029        0.04         0.49           NA           NA        tbd         NA
## 4030        0.01         0.49           49            5                    NA
## 4031        0.02         0.49           61           55        7.2         20
## 4032        0.03         0.49           78           36        8.7        180
## 4033        0.01         0.49           85           16        7.7         22
## 4034        0.08         0.49           81           29        7.7        111
## 4035        0.03         0.49           77           38        8.3         53
## 4036        0.04         0.49           78           71        6.2         82
## 4037        0.00         0.49           NA           NA                    NA
## 4038        0.00         0.49           NA           NA                    NA
## 4039        0.02         0.49           76           41        8.4         46
## 4040        0.03         0.49           65           69        6.4        110
## 4041        0.03         0.49           NA           NA                    NA
## 4042        0.05         0.49           NA           NA        tbd         NA
## 4043        0.04         0.49           61           12          5          8
## 4044        0.04         0.49           NA           NA                    NA
## 4045        0.05         0.49           NA           NA                    NA
## 4046        0.00         0.49           NA           NA                    NA
## 4047        0.04         0.49           56            7        7.3          4
## 4048        0.06         0.49           NA           NA        7.2         10
## 4049        0.33         0.49           NA           NA                    NA
## 4050        0.04         0.49           NA           NA        4.6         77
## 4051        0.06         0.49           NA           NA        6.6         10
## 4052        0.03         0.49           76           22        7.7         19
## 4053        0.00         0.49           NA           NA                    NA
## 4054        0.03         0.49           NA           NA                    NA
## 4055        0.09         0.49           NA           NA                    NA
## 4056        0.06         0.49           72           26        6.4        516
## 4057        0.04         0.49           43           37        4.4         24
## 4058        0.22         0.49           NA           NA                    NA
## 4059        0.01         0.49           69           20        7.5         21
## 4060        0.05         0.49           72           50        7.6         41
## 4061        0.06         0.49           57           30        6.4          8
## 4062        0.02         0.49           66            7        tbd         NA
## 4063        0.03         0.49           NA           NA                    NA
## 4064        0.00         0.49           NA           NA                    NA
## 4065        0.03         0.49           36            7        3.6         16
## 4066        0.02         0.49           72           37        7.7         38
## 4067        0.00         0.49           NA           NA                    NA
## 4068        0.06         0.49           84            5        6.1         31
## 4069        0.03         0.49           58           55        6.3         29
## 4070        0.03         0.49           81           70        7.4        103
## 4071        0.05         0.48           58           53        5.7        162
## 4072        0.02         0.48           NA           NA                    NA
## 4073        0.01         0.48           NA           NA                    NA
## 4074        0.07         0.48           56           18        6.1          9
## 4075        0.01         0.48           NA           NA        tbd         NA
## 4076        0.01         0.48           62            4        7.8          8
## 4077        0.03         0.48           NA           NA                    NA
## 4078        0.03         0.48           85           34        5.8       1345
## 4079        0.02         0.48           78           44        6.5         11
## 4080        0.01         0.48           NA           NA                    NA
## 4081        0.00         0.48           NA           NA                    NA
## 4082        0.04         0.48           NA           NA                    NA
## 4083        0.10         0.48           79           50        8.6         31
## 4084        0.03         0.48           NA           NA        tbd         NA
## 4085        0.06         0.48           NA           NA                    NA
## 4086        0.07         0.48           NA           NA                    NA
## 4087        0.04         0.48           87           13        5.6         65
## 4088        0.03         0.48           NA           NA                    NA
## 4089        0.05         0.48           55           21        5.5         20
## 4090        0.05         0.48           NA           NA                    NA
## 4091        0.04         0.48           73           41        8.1         21
## 4092        0.08         0.48           77           74        7.7        155
## 4093        0.05         0.48           72           71        7.5        147
## 4094        0.03         0.48           NA           NA                    NA
## 4095        0.04         0.48           80           44        7.9         21
## 4096        0.04         0.48           80           64        8.1         79
## 4097        0.03         0.48           78           73        8.2         76
## 4098        0.06         0.48           81           26        8.2         19
## 4099        0.06         0.48           NA           NA                    NA
## 4100        0.00         0.48           NA           NA                    NA
## 4101        0.07         0.48           NA           NA        tbd         NA
## 4102        0.06         0.48           NA           NA          5          4
## 4103        0.04         0.48           73            8        5.9         10
## 4104        0.06         0.48           NA           NA        7.1         62
## 4105        0.04         0.48           NA           NA        tbd         NA
## 4106        0.04         0.48           70           64          7        260
## 4107        0.05         0.48           NA           NA                    NA
## 4108        0.03         0.48           NA           NA                    NA
## 4109        0.07         0.48           72           54        8.1        118
## 4110        0.04         0.48           82           46        7.8        358
## 4111        0.05         0.48           NA           NA                    NA
## 4112        0.06         0.48           82           11        7.9         17
## 4113        0.03         0.48           NA           NA        7.6          5
## 4114        0.03         0.48           NA           NA        tbd         NA
## 4115        0.03         0.48           NA           NA                    NA
## 4116        0.04         0.48           NA           NA                    NA
## 4117        0.00         0.48           NA           NA                    NA
## 4118        0.05         0.48           80           18          6         81
## 4119        0.01         0.48           50            5        5.3          6
## 4120        0.02         0.48           81           30        5.1         11
## 4121        0.02         0.48           68           42        7.5         24
## 4122        0.00         0.48           72           49        6.6         33
## 4123        0.24         0.48           NA           NA        tbd         NA
## 4124        0.00         0.48           NA           NA                    NA
## 4125        0.05         0.48           NA           NA        tbd         NA
## 4126        0.06         0.48           80           10        9.1         10
## 4127        0.01         0.48           65           34          6         21
## 4128        0.00         0.48           43           17        4.1        176
## 4129        0.04         0.47           72           18        6.3          9
## 4130        0.01         0.47           NA           NA                    NA
## 4131        0.03         0.47           NA           NA                    NA
## 4132        0.00         0.47           NA           NA                    NA
## 4133        0.00         0.47           NA           NA                    NA
## 4134        0.06         0.47           61           19        8.7         13
## 4135        0.03         0.47           NA           NA                    NA
## 4136        0.06         0.47           NA           NA                    NA
## 4137        0.02         0.47           60           29        6.9         16
## 4138        0.04         0.47           67           30        6.5        132
## 4139        0.04         0.47           78           24        tbd         NA
## 4140        0.04         0.47           53           39        5.3         29
## 4141        0.00         0.47           NA           NA                    NA
## 4142        0.05         0.47           79           27        6.4         54
## 4143        0.03         0.47           NA           NA                    NA
## 4144        0.05         0.47           62           66        7.1         63
## 4145        0.03         0.47           NA           NA                    NA
## 4146        0.04         0.47           83           45        4.4        177
## 4147        0.07         0.47           72           47        7.6         70
## 4148        0.06         0.47           90           59        8.8        328
## 4149        0.03         0.47           87           49        5.9       1154
## 4150        0.01         0.47           37            5        6.3          4
## 4151        0.04         0.47           NA           NA        tbd         NA
## 4152        0.00         0.47           NA           NA                    NA
## 4153        0.05         0.47           82           47        7.6         95
## 4154        0.04         0.47           69           28        6.2         49
## 4155        0.01         0.47           75           15          8         10
## 4156        0.01         0.47           NA           NA                    NA
## 4157        0.01         0.47           84           45          9         59
## 4158        0.04         0.47           82           16        8.8         36
## 4159        0.06         0.47           54            7        7.1         16
## 4160        0.05         0.47           68           22        7.4          5
## 4161        0.00         0.47           34            4        tbd         NA
## 4162        0.08         0.47           79           48        7.9         98
## 4163        0.04         0.47           65           15        7.3          4
## 4164        0.06         0.47           58           31          8         10
## 4165        0.03         0.47           NA           NA                    NA
## 4166        0.01         0.47           NA           NA                    NA
## 4167        0.05         0.47           NA           NA                    NA
## 4168        0.01         0.47           NA           NA                    NA
## 4169        0.01         0.47           NA           NA                    NA
## 4170        0.05         0.47           60           42        6.5         23
## 4171        0.05         0.47           82           64        7.9         61
## 4172        0.08         0.47           59           36        4.3         24
## 4173        0.00         0.47           NA           NA                    NA
## 4174        0.06         0.47           69           19        8.5          8
## 4175        0.04         0.47           NA           NA                    NA
## 4176        0.02         0.47           74           19        7.4         11
## 4177        0.04         0.47           66           57        7.5        156
## 4178        0.12         0.47           64           25        7.1         18
## 4179        0.03         0.47           NA           NA                    NA
## 4180        0.02         0.47           85           67        8.1       1502
## 4181        0.04         0.47           NA           NA          9         13
## 4182        0.05         0.47           41           12        4.2         15
## 4183        0.00         0.47           NA           NA                    NA
## 4184        0.02         0.47           48           26        6.8         13
## 4185        0.00         0.47           NA           NA                    NA
## 4186        0.17         0.47           NA           NA        tbd         NA
## 4187        0.06         0.47           79           40        8.9         32
## 4188        0.04         0.47           82           76        8.1         82
## 4189        0.01         0.47           70            8        5.6          5
## 4190        0.05         0.47           79           56          8        226
## 4191        0.06         0.47           56           13        tbd         NA
## 4192        0.10         0.47           NA           NA                    NA
## 4193        0.04         0.47           55           12        tbd         NA
## 4194        0.06         0.47           46           15        8.2         20
## 4195        0.00         0.47           NA           NA                    NA
## 4196        0.03         0.47           NA           NA                    NA
## 4197        0.02         0.47           75           37        7.3         21
## 4198        0.04         0.47           54           56        7.8         44
## 4199        0.04         0.47           70           23        6.3        152
## 4200        0.01         0.47           59            8        tbd         NA
## 4201        0.04         0.47           79           21        6.5         17
## 4202        0.03         0.47           85           76        8.2        223
## 4203        0.06         0.47           62           19        8.7         21
## 4204        0.01         0.47           69           28        8.4         19
## 4205        0.01         0.47           85           54          9        142
## 4206        0.04         0.47           71           41        6.9         44
## 4207        0.02         0.46           81           14        7.6         22
## 4208        0.06         0.46           76           22        9.1          7
## 4209        0.06         0.46           NA           NA        8.9          9
## 4210        0.06         0.46           74           34        7.4        118
## 4211        0.01         0.46           53           15        tbd         NA
## 4212        0.12         0.46           69           11        7.4          9
## 4213        0.01         0.46           53           13        tbd         NA
## 4214        0.05         0.46           70           28          7         65
## 4215        0.03         0.46           80           36          6        151
## 4216        0.02         0.46           NA           NA                    NA
## 4217        0.04         0.46           NA           NA                    NA
## 4218        0.00         0.46           NA           NA                    NA
## 4219        0.04         0.46           67           17        6.8         13
## 4220        0.01         0.46           62            4        5.5          4
## 4221        0.00         0.46           NA           NA                    NA
## 4222        0.04         0.46           69           34        7.2         28
## 4223        0.17         0.46           74           25        7.3         51
## 4224        0.03         0.46           65           11        tbd         NA
## 4225        0.01         0.46           76            6        7.7          6
## 4226        0.05         0.46           83           30        8.4         14
## 4227        0.09         0.46           85           41        8.8         47
## 4228        0.00         0.46           NA           NA                    NA
## 4229        0.03         0.46           71           15        8.3         22
## 4230        0.00         0.46           NA           NA                    NA
## 4231        0.01         0.46           59           10        tbd         NA
## 4232        0.01         0.46           45            5        tbd         NA
## 4233        0.06         0.46           76           20        tbd         NA
## 4234        0.06         0.46           71           20        7.9         23
## 4235        0.04         0.46           NA           NA        7.6        172
## 4236        0.06         0.46           49           13        5.4         29
## 4237        0.01         0.46           64            5        tbd         NA
## 4238        0.07         0.46           61           41        6.7         11
## 4239        0.03         0.46           NA           NA                    NA
## 4240        0.03         0.46           NA           NA                    NA
## 4241        0.04         0.46           NA           NA                    NA
## 4242        0.07         0.46           NA           NA                    NA
## 4243        0.04         0.46           59           32        4.9         60
## 4244        0.06         0.46           82           30        7.6         30
## 4245        0.05         0.46           57            9        6.8         10
## 4246        0.00         0.46           NA           NA                    NA
## 4247        0.06         0.46           80           37        7.9         29
## 4248        0.05         0.46           50            8        3.7         18
## 4249        0.06         0.46           NA           NA                    NA
## 4250        0.01         0.46           NA           NA                    NA
## 4251        0.01         0.46           77            6        8.3         12
## 4252        0.03         0.46           65           14        tbd         NA
## 4253        0.07         0.46           NA           NA          7         10
## 4254        0.06         0.46           64           41        6.9        262
## 4255        0.02         0.46           NA           NA                    NA
## 4256        0.04         0.46           72            7        tbd         NA
## 4257        0.06         0.46           72            8        4.6         32
## 4258        0.00         0.46           NA           NA                    NA
## 4259        0.04         0.46           NA           NA                    NA
## 4260        0.08         0.46           NA           NA        5.6         17
## 4261        0.03         0.46           63           11        6.5          6
## 4262        0.03         0.46           NA           NA                    NA
## 4263        0.06         0.46           58           25        8.8         51
## 4264        0.04         0.46           NA           NA        tbd         NA
## 4265        0.00         0.46           NA           NA                    NA
## 4266        0.04         0.46           70           23        8.7         19
## 4267        0.01         0.46           NA           NA                    NA
## 4268        0.05         0.46           67           33        6.1          8
## 4269        0.04         0.46           86           48        8.4         37
## 4270        0.02         0.46           89           44        8.2         31
## 4271        0.09         0.46           65           19        9.1         64
## 4272        0.03         0.46           NA           NA                    NA
## 4273        0.04         0.46           41           25        4.1         14
## 4274        0.12         0.46           67           28        7.9         30
## 4275        0.04         0.45           71            6          7         58
## 4276        0.00         0.45           NA           NA                    NA
## 4277        0.01         0.45           NA           NA                    NA
## 4278        0.03         0.45           NA           NA                    NA
## 4279        0.03         0.45           NA           NA                    NA
## 4280        0.03         0.45           NA           NA        2.4         35
## 4281        0.00         0.45           NA           NA                    NA
## 4282        0.00         0.45           NA           NA                    NA
## 4283        0.01         0.45           63           23          8         45
## 4284        0.04         0.45           70            4        8.7         11
## 4285        0.02         0.45           86           16        tbd         NA
## 4286        0.00         0.45           NA           NA                    NA
## 4287        0.05         0.45           NA           NA                    NA
## 4288        0.05         0.45           NA           NA        2.8         47
## 4289        0.01         0.45           NA           NA                    NA
## 4290        0.09         0.45           75           15        7.5        221
## 4291        0.06         0.45           46            5        6.8          5
## 4292        0.03         0.45           83           32        7.5         23
## 4293        0.03         0.45           NA           NA        tbd         NA
## 4294        0.03         0.45           NA           NA        tbd         NA
## 4295        0.02         0.45           89           84        8.9         85
## 4296        0.06         0.45           66           22        6.9         15
## 4297        0.00         0.45           NA           NA                    NA
## 4298        0.03         0.45           NA           NA        tbd         NA
## 4299        0.03         0.45           NA           NA                    NA
## 4300        0.05         0.45           70           12        7.2         20
## 4301        0.06         0.45           75           37        8.4         52
## 4302        0.03         0.45           NA           NA                    NA
## 4303        0.06         0.45           75           21        8.3         23
## 4304        0.03         0.45           79           15        6.7          6
## 4305        0.03         0.45           NA           NA        7.8         21
## 4306        0.03         0.45           NA           NA        tbd         NA
## 4307        0.04         0.45           NA           NA        6.4          7
## 4308        0.03         0.45           NA           NA        tbd         NA
## 4309        0.02         0.45           76           30        8.7         30
## 4310        0.00         0.45           NA           NA                    NA
## 4311        0.02         0.45           65           28        6.8         10
## 4312        0.03         0.45           68            7          7          4
## 4313        0.05         0.45           NA           NA                    NA
## 4314        0.04         0.45           69           54        7.3         26
## 4315        0.03         0.45           69           27        6.8         24
## 4316        0.00         0.45           NA           NA                    NA
## 4317        0.03         0.45           NA           NA                    NA
## 4318        0.04         0.45           76           32        tbd         NA
## 4319        0.05         0.45           76           23        8.2         27
## 4320        0.01         0.45           NA           NA                    NA
## 4321        0.00         0.45           NA           NA                    NA
## 4322        0.04         0.45           NA           NA                    NA
## 4323        0.03         0.45           69           16        5.8         22
## 4324        0.00         0.45           NA           NA                    NA
## 4325        0.07         0.45           71           52        7.3         58
## 4326        0.06         0.45           NA           NA                    NA
## 4327        0.00         0.45           NA           NA                    NA
## 4328        0.01         0.45           NA           NA                    NA
## 4329        0.01         0.45           NA           NA                    NA
## 4330        0.05         0.45           NA           NA                    NA
## 4331        0.03         0.45           NA           NA                    NA
## 4332        0.04         0.45           NA           NA          7         20
## 4333        0.01         0.45           82           14        8.2         13
## 4334        0.20         0.45           86           52        8.4        116
## 4335        0.03         0.45           NA           NA                    NA
## 4336        0.01         0.45           NA           NA        tbd         NA
## 4337        0.03         0.45           NA           NA        6.8          6
## 4338        0.00         0.45           NA           NA                    NA
## 4339        0.03         0.45           NA           NA                    NA
## 4340        0.04         0.45           NA           NA                    NA
## 4341        0.04         0.45           53           17        7.2         17
## 4342        0.03         0.45           58            9        tbd         NA
## 4343        0.05         0.45           77           42        7.2         30
## 4344        0.39         0.45           NA           NA                    NA
## 4345        0.03         0.45           NA           NA                    NA
## 4346        0.34         0.45           NA           NA                    NA
## 4347        0.01         0.45           72           17        8.6         13
## 4348        0.04         0.45           80            8        7.5          6
## 4349        0.03         0.45           NA           NA                    NA
## 4350        0.02         0.45           56           48        6.9         47
## 4351        0.01         0.45           83           17        6.7          7
## 4352        0.07         0.45           74           48        7.1        103
## 4353        0.00         0.45           NA           NA                    NA
## 4354        0.01         0.45           79           47        9.1         81
## 4355        0.03         0.45           80           40        7.7         37
## 4356        0.01         0.45           68           17        tbd         NA
## 4357        0.04         0.45           38           42          5         46
## 4358        0.03         0.45           NA           NA                    NA
## 4359        0.05         0.45           85           61        7.6        478
## 4360        0.06         0.45           73           22        7.7          6
## 4361        0.03         0.45           NA           NA                    NA
## 4362        0.03         0.45           79           62        8.2        113
## 4363        0.07         0.45           NA           NA                    NA
## 4364        0.06         0.45           NA           NA                    NA
## 4365        0.03         0.45           81           23        8.2       1647
## 4366        0.08         0.45           61           27        7.2        221
## 4367        0.00         0.45           NA           NA                    NA
## 4368        0.06         0.45           NA           NA                    NA
## 4369        0.03         0.45           77           18        4.7       3288
## 4370        0.01         0.45           84           38        8.6         14
## 4371        0.05         0.45           50           12        4.6         18
## 4372        0.04         0.45           75           71          7        139
## 4373        0.03         0.45           78           13          8          4
## 4374        0.04         0.45           70           54        6.9        180
## 4375        0.06         0.44           NA           NA                    NA
## 4376        0.08         0.44           70           46        7.4        162
## 4377        0.03         0.44           NA           NA        tbd         NA
## 4378        0.03         0.44           NA           NA        tbd         NA
## 4379        0.06         0.44           70           19        5.2         27
## 4380        0.03         0.44           44            4        tbd         NA
## 4381        0.06         0.44           NA           NA                    NA
## 4382        0.03         0.44           89           19        7.9          9
## 4383        0.00         0.44           NA           NA                    NA
## 4384        0.06         0.44           47           25        7.8         12
## 4385        0.06         0.44           NA           NA                    NA
## 4386        0.06         0.44           78           27        7.4         41
## 4387        0.06         0.44           64           41        8.5         19
## 4388        0.02         0.44           58           58        5.3        133
## 4389        0.08         0.44           69           49        6.6         28
## 4390        0.02         0.44           84           50        8.7        199
## 4391        0.04         0.44           74           35        7.2         47
## 4392        0.07         0.44           NA           NA        7.1        115
## 4393        0.07         0.44           78           46        5.6         32
## 4394        0.14         0.44           80           26        8.1         25
## 4395        0.04         0.44           NA           NA                    NA
## 4396        0.06         0.44           56           33        7.4         21
## 4397        0.02         0.44           NA           NA                    NA
## 4398        0.03         0.44           80           26        7.7         21
## 4399        0.03         0.44           NA           NA                    NA
## 4400        0.01         0.44           88           14        8.5         11
## 4401        0.06         0.44           80           42        8.5         65
## 4402        0.02         0.44           50           14        5.9         21
## 4403        0.01         0.44           NA           NA                    NA
## 4404        0.03         0.44           NA           NA                    NA
## 4405        0.04         0.44           73           36        6.6         17
## 4406        0.03         0.44           NA           NA                    NA
## 4407        0.04         0.44           NA           NA                    NA
## 4408        0.02         0.44           85           27        8.6         15
## 4409        0.05         0.44           68           67          8         88
## 4410        0.03         0.44           NA           NA        5.8          6
## 4411        0.01         0.44           83           41        7.6         45
## 4412        0.00         0.44           NA           NA                    NA
## 4413        0.03         0.44           NA           NA                    NA
## 4414        0.03         0.44           NA           NA                    NA
## 4415        0.00         0.44           NA           NA                    NA
## 4416        0.04         0.44           NA           NA                    NA
## 4417        0.05         0.44           NA           NA        tbd         NA
## 4418        0.04         0.44           66            5        8.2          5
## 4419        0.10         0.44           NA           NA                    NA
## 4420        0.01         0.44           NA           NA                    NA
## 4421        0.03         0.44           NA           NA                    NA
## 4422        0.00         0.44           NA           NA                    NA
## 4423        0.01         0.44           NA           NA                    NA
## 4424        0.00         0.44           NA           NA                    NA
## 4425        0.05         0.44           69            6          8          6
## 4426        0.03         0.44           NA           NA                    NA
## 4427        0.04         0.44           79           52        8.3        160
## 4428        0.08         0.44           74           51          8         20
## 4429        0.02         0.44           81           18        9.3         12
## 4430        0.03         0.44           NA           NA        tbd         NA
## 4431        0.00         0.44           NA           NA                    NA
## 4432        0.03         0.44           NA           NA                    NA
## 4433        0.01         0.44           NA           NA                    NA
## 4434        0.03         0.44           NA           NA        6.2          5
## 4435        0.01         0.44           71           30        7.2         44
## 4436        0.04         0.44           86           65        5.1       1438
## 4437        0.01         0.44           53            6        tbd         NA
## 4438        0.00         0.44           NA           NA                    NA
## 4439        0.11         0.44           57            9        4.1         89
## 4440        0.07         0.44           59           22        6.6         36
## 4441        0.00         0.44           NA           NA                    NA
## 4442        0.01         0.44           55           26        7.2         22
## 4443        0.04         0.44           65            5          4          6
## 4444        0.01         0.44           88           18          9         65
## 4445        0.01         0.44           NA           NA                    NA
## 4446        0.04         0.44           71           72        7.2         63
## 4447        0.01         0.44           92           41        8.7        173
## 4448        0.03         0.44           53            8        6.8          5
## 4449        0.01         0.44           NA           NA        tbd         NA
## 4450        0.06         0.44           75           24        8.7         33
## 4451        0.03         0.44           82           63        8.1        196
## 4452        0.03         0.44           70           14        2.8         40
## 4453        0.03         0.44           NA           NA                    NA
## 4454        0.38         0.44           NA           NA                    NA
## 4455        0.04         0.44           84           81        7.7         95
## 4456        0.00         0.44           NA           NA                    NA
## 4457        0.00         0.44           NA           NA                    NA
## 4458        0.05         0.44           74           57        7.5         96
## 4459        0.00         0.44           NA           NA                    NA
## 4460        0.06         0.44           73           15        8.6          5
## 4461        0.06         0.44           NA           NA        tbd         NA
## 4462        0.05         0.44           80           34        7.8        117
## 4463        0.07         0.44           NA           NA                    NA
## 4464        0.04         0.44           63            4        tbd         NA
## 4465        0.02         0.44           78           22        5.2          5
## 4466        0.03         0.44           NA           NA                    NA
## 4467        0.01         0.43           58            9        8.6         18
## 4468        0.03         0.43           60            4          6          8
## 4469        0.06         0.43           73           36        8.6         53
## 4470        0.04         0.43           NA           NA                    NA
## 4471        0.05         0.43           NA           NA                    NA
## 4472        0.05         0.43           58           43          5        152
## 4473        0.04         0.43           65           18          7          4
## 4474        0.01         0.43           72            8        8.2         13
## 4475        0.00         0.43           NA           NA                    NA
## 4476        0.26         0.43           NA           NA                    NA
## 4477        0.01         0.43           69           20        tbd         NA
## 4478        0.03         0.43           NA           NA        tbd         NA
## 4479        0.02         0.43           88           22        8.5         11
## 4480        0.01         0.43           NA           NA                    NA
## 4481        0.03         0.43           74           33        6.8         28
## 4482        0.04         0.43           80           11        7.8        119
## 4483        0.07         0.43           NA           NA                    NA
## 4484        0.06         0.43           68           36        8.4         17
## 4485        0.00         0.43           NA           NA                    NA
## 4486        0.07         0.43           43           22        5.3         16
## 4487        0.02         0.43           88           13        8.8         19
## 4488        0.06         0.43           51            7        3.6         16
## 4489        0.03         0.43           NA           NA                    NA
## 4490        0.10         0.43           NA           NA                    NA
## 4491        0.06         0.43           73           26        7.5        100
## 4492        0.07         0.43           43           31        5.5         49
## 4493        0.03         0.43           76            5        8.1          8
## 4494        0.04         0.43           62           49        7.4        368
## 4495        0.04         0.43           74           25        7.1         36
## 4496        0.08         0.43           81           26        6.8         79
## 4497        0.03         0.43           77           32        8.4         93
## 4498        0.04         0.43           45           31          7        148
## 4499        0.06         0.43           81           23          8         40
## 4500        0.00         0.43           NA           NA                    NA
## 4501        0.06         0.43           51            7        8.1         28
## 4502        0.01         0.43           NA           NA                    NA
## 4503        0.01         0.43           81           17        8.6         18
## 4504        0.03         0.43           73            7        tbd         NA
## 4505        0.00         0.43           NA           NA                    NA
## 4506        0.08         0.43           74           12        6.2        181
## 4507        0.04         0.43           NA           NA        5.4         25
## 4508        0.07         0.43           NA           NA                    NA
## 4509        0.01         0.43           NA           NA                    NA
## 4510        0.06         0.43           NA           NA        8.7         63
## 4511        0.24         0.43           64            9        8.7          6
## 4512        0.06         0.43           68           27        8.8         16
## 4513        0.06         0.43           NA           NA                    NA
## 4514        0.01         0.43           NA           NA                    NA
## 4515        0.06         0.43           71           38        7.8          5
## 4516        0.03         0.43           NA           NA                    NA
## 4517        0.05         0.43           74           22        8.2         33
## 4518        0.02         0.43           82           48        7.9         53
## 4519        0.03         0.43           NA           NA                    NA
## 4520        0.04         0.43           47           14          6         24
## 4521        0.06         0.43           77            5        7.1         29
## 4522        0.02         0.43           71           12        8.8         23
## 4523        0.05         0.43           NA           NA        7.2          6
## 4524        0.04         0.43           68            7        tbd         NA
## 4525        0.02         0.43           57           27        6.8         11
## 4526        0.03         0.43           89           52        8.5        171
## 4527        0.05         0.43           87           30        7.6       2202
## 4528        0.04         0.43           NA           NA        tbd         NA
## 4529        0.02         0.43           66           27        7.8         25
## 4530        0.03         0.43           NA           NA        tbd         NA
## 4531        0.07         0.43           64           49        6.9        117
## 4532        0.06         0.43           76           54          8        267
## 4533        0.02         0.43           NA           NA        tbd         NA
## 4534        0.03         0.43           NA           NA        tbd         NA
## 4535        0.04         0.43           90           35        8.2        217
## 4536        0.01         0.43           92           13        8.5         17
## 4537        0.01         0.43           NA           NA                    NA
## 4538        0.01         0.43           74           22        tbd         NA
## 4539        0.03         0.43           53           10        5.2          6
## 4540        0.03         0.43           NA           NA        tbd         NA
## 4541        0.05         0.43           80           28        7.6         95
## 4542        0.05         0.43           NA           NA        5.7          7
## 4543        0.03         0.43           NA           NA                    NA
## 4544        0.05         0.43           46           18        6.7          6
## 4545        0.03         0.43           70           13        6.6         16
## 4546        0.03         0.42           56           23        6.5         13
## 4547        0.00         0.42           NA           NA                    NA
## 4548        0.00         0.42           NA           NA                    NA
## 4549        0.01         0.42           88           15        8.6          7
## 4550        0.08         0.42           68           38        4.4         40
## 4551        0.03         0.42           74           29        4.4         93
## 4552        0.05         0.42           54           18        5.4         28
## 4553        0.03         0.42           74           19        6.7        109
## 4554        0.01         0.42           79           10        8.9         24
## 4555        0.12         0.42           65           24        8.2          6
## 4556        0.06         0.42           39           23        4.9         46
## 4557        0.05         0.42           81           28        5.8         18
## 4558        0.01         0.42           68           24        6.4         13
## 4559        0.01         0.42           84           17        6.9         20
## 4560        0.05         0.42           64           19        3.1        157
## 4561        0.03         0.42           NA           NA                    NA
## 4562        0.00         0.42           NA           NA                    NA
## 4563        0.03         0.42           NA           NA                    NA
## 4564        0.03         0.42           NA           NA                    NA
## 4565        0.01         0.42           76           26        7.7         15
## 4566        0.03         0.42           NA           NA                    NA
## 4567        0.03         0.42           NA           NA                    NA
## 4568        0.11         0.42           NA           NA        6.5          8
## 4569        0.04         0.42           NA           NA        tbd         NA
## 4570        0.01         0.42           NA           NA                    NA
## 4571        0.03         0.42           91           12        7.8         12
## 4572        0.05         0.42           78           19        7.5         11
## 4573        0.03         0.42           NA           NA                    NA
## 4574        0.04         0.42           NA           NA        5.4          5
## 4575        0.11         0.42           NA           NA        tbd         NA
## 4576        0.03         0.42           69            8        6.9         10
## 4577        0.10         0.42           61           38        6.8        106
## 4578        0.05         0.42           73           27          8         42
## 4579        0.00         0.42           NA           NA                    NA
## 4580        0.04         0.42           70           19        6.7         11
## 4581        0.02         0.42           88           32        8.5         14
## 4582        0.01         0.42           NA           NA                    NA
## 4583        0.05         0.42           55            5        7.7          9
## 4584        0.05         0.42           NA           NA                    NA
## 4585        0.05         0.42           64           22        7.2          9
## 4586        0.07         0.42           79           51        7.2        244
## 4587        0.06         0.42           47            4        7.5         13
## 4588        0.03         0.42           70           12        8.1          9
## 4589        0.01         0.42           60           21        tbd         NA
## 4590        0.04         0.42           71           56        5.9         18
## 4591        0.01         0.42           72            8          8          4
## 4592        0.03         0.42           NA           NA                    NA
## 4593        0.09         0.42           NA           NA                    NA
## 4594        0.03         0.42           NA           NA                    NA
## 4595        0.02         0.42           NA           NA        tbd         NA
## 4596        0.00         0.42           NA           NA                    NA
## 4597        0.00         0.42           NA           NA                    NA
## 4598        0.02         0.42           71           16        8.7         10
## 4599        0.00         0.42           NA           NA                    NA
## 4600        0.03         0.42           NA           NA        tbd         NA
## 4601        0.05         0.42           NA           NA                    NA
## 4602        0.10         0.42           61            5          7         11
## 4603        0.00         0.42           NA           NA                    NA
## 4604        0.03         0.42           NA           NA                    NA
## 4605        0.00         0.42           NA           NA                    NA
## 4606        0.00         0.42           NA           NA                    NA
## 4607        0.00         0.42           NA           NA                    NA
## 4608        0.01         0.42           84           41        8.2         25
## 4609        0.03         0.42           80           18        7.6         13
## 4610        0.06         0.42           84           12        7.3          7
## 4611        0.03         0.42           NA           NA        8.7         14
## 4612        0.02         0.42           78           16        7.1          7
## 4613        0.01         0.42           81           32        8.8         17
## 4614        0.03         0.42           45           12        5.8          8
## 4615        0.00         0.42           NA           NA                    NA
## 4616        0.01         0.42           NA           NA                    NA
## 4617        0.04         0.42           59           11          7          4
## 4618        0.05         0.42           NA           NA        tbd         NA
## 4619        0.01         0.42           76           39        8.2         54
## 4620        0.00         0.42           NA           NA                    NA
## 4621        0.01         0.42           69           20        6.3         13
## 4622        0.05         0.42           70           11        1.7         30
## 4623        0.07         0.42           80           23        8.2        508
## 4624        0.03         0.42           NA           NA        6.4          5
## 4625        0.03         0.42           65           14        6.8         44
## 4626        0.05         0.42           75           18        8.5         26
## 4627        0.01         0.42           NA           NA                    NA
## 4628        0.05         0.42           70           30        7.5         46
## 4629        0.03         0.42           NA           NA        7.5         10
## 4630        0.03         0.42           NA           NA                    NA
## 4631        0.06         0.42           75           36        7.6         18
## 4632        0.01         0.42           NA           NA                    NA
## 4633        0.01         0.42           77           65          8         51
## 4634        0.01         0.42           NA           NA                    NA
## 4635        0.04         0.42           76           59        8.2        319
## 4636        0.02         0.42           76           25        8.1          7
## 4637        0.03         0.42           75           72        6.8        208
## 4638        0.02         0.42           74           35        6.8         12
## 4639        0.04         0.42           84           70        8.4        182
## 4640        0.03         0.42           NA           NA        9.2         12
## 4641        0.05         0.42           58           47        6.2         28
## 4642        0.01         0.42           NA           NA                    NA
## 4643        0.05         0.42           54           10          7         10
## 4644        0.03         0.42           76           10        8.8         29
## 4645        0.03         0.42           NA           NA                    NA
## 4646        0.03         0.42           66           58        7.9         53
## 4647        0.04         0.42           NA           NA                    NA
## 4648        0.05         0.42           NA           NA        tbd         NA
## 4649        0.05         0.42           77           41        6.8        742
## 4650        0.00         0.42           46           22        4.5         34
## 4651        0.05         0.42           77           47        8.9         40
## 4652        0.00         0.42           NA           NA                    NA
## 4653        0.02         0.42           76           22        tbd         NA
## 4654        0.03         0.41           46           20        4.4        173
## 4655        0.05         0.41           NA           NA                    NA
## 4656        0.04         0.41           82           33        8.9         65
## 4657        0.07         0.41           75            4        5.5         51
## 4658        0.05         0.41           NA           NA                    NA
## 4659        0.01         0.41           NA           NA                    NA
## 4660        0.05         0.41           65           25        8.7          6
## 4661        0.03         0.41           81           72        8.2        146
## 4662        0.01         0.41           NA           NA                    NA
## 4663        0.03         0.41           NA           NA        tbd         NA
## 4664        0.00         0.41           NA           NA        8.6         50
## 4665        0.11         0.41           NA           NA        6.7          7
## 4666        0.00         0.41           NA           NA                    NA
## 4667        0.03         0.41           NA           NA                    NA
## 4668        0.06         0.41           70           12        5.9         48
## 4669        0.04         0.41           76           42          6         77
## 4670        0.05         0.41           NA           NA        tbd         NA
## 4671        0.03         0.41           NA           NA                    NA
## 4672        0.02         0.41           74           39        6.6         28
## 4673        0.00         0.41           NA           NA                    NA
## 4674        0.03         0.41           70           58        7.9         63
## 4675        0.03         0.41           56           10        tbd         NA
## 4676        0.03         0.41           NA           NA                    NA
## 4677        0.06         0.41           69           17        8.7         12
## 4678        0.03         0.41           NA           NA                    NA
## 4679        0.07         0.41           80           43        7.8         62
## 4680        0.00         0.41           NA           NA                    NA
## 4681        0.05         0.41           70           30        6.8         19
## 4682        0.06         0.41           NA           NA        5.3         81
## 4683        0.05         0.41           NA           NA        5.8          5
## 4684        0.00         0.41           NA           NA                    NA
## 4685        0.05         0.41           52           44        7.5         20
## 4686        0.05         0.41           81           12        7.9         70
## 4687        0.04         0.41           80           12        6.9         27
## 4688        0.14         0.41           77            5        7.7          6
## 4689        0.07         0.41           55           31        7.1         14
## 4690        0.03         0.41           61            4        2.8          4
## 4691        0.03         0.41           NA           NA                    NA
## 4692        0.04         0.41           59           22        3.2        180
## 4693        0.00         0.41           NA           NA                    NA
## 4694        0.04         0.41           79           33        5.8       1188
## 4695        0.10         0.41           NA           NA                    NA
## 4696        0.06         0.41           NA           NA                    NA
## 4697        0.03         0.41           68            8        tbd         NA
## 4698        0.06         0.41           76           41        6.3         24
## 4699        0.03         0.41           NA           NA                    NA
## 4700        0.09         0.41           NA           NA        1.8         69
## 4701        0.00         0.41           NA           NA                    NA
## 4702        0.06         0.41           NA           NA        tbd         NA
## 4703        0.00         0.41           NA           NA                    NA
## 4704        0.06         0.41           62           19        4.1         28
## 4705        0.03         0.41           NA           NA                    NA
## 4706        0.03         0.41           63            8        4.8          4
## 4707        0.03         0.41           81           31        6.9        228
## 4708        0.04         0.41           NA           NA                    NA
## 4709        0.00         0.41           NA           NA                    NA
## 4710        0.00         0.41           NA           NA                    NA
## 4711        0.02         0.41           96           44        8.5       3606
## 4712        0.05         0.41           58           17        5.7         18
## 4713        0.05         0.41           NA           NA                    NA
## 4714        0.03         0.41           NA           NA                    NA
## 4715        0.04         0.41           NA           NA        tbd         NA
## 4716        0.03         0.41           NA           NA                    NA
## 4717        0.03         0.41           73           37        7.6         82
## 4718        0.04         0.41           84           54        8.2         70
## 4719        0.05         0.41           53            8        tbd         NA
## 4720        0.20         0.41           NA           NA        4.4          7
## 4721        0.03         0.41           75           16        8.8         30
## 4722        0.05         0.41           NA           NA                    NA
## 4723        0.01         0.41           NA           NA        8.1         16
## 4724        0.01         0.41           81           20        8.7         43
## 4725        0.06         0.41           NA           NA        tbd         NA
## 4726        0.00         0.41           NA           NA                    NA
## 4727        0.03         0.41           NA           NA                    NA
## 4728        0.03         0.41           69           47        8.5         55
## 4729        0.03         0.41           NA           NA                    NA
## 4730        0.02         0.41           NA           NA                    NA
## 4731        0.06         0.41           NA           NA          8          4
## 4732        0.01         0.41           NA           NA                    NA
## 4733        0.07         0.41           NA           NA        tbd         NA
## 4734        0.00         0.41           NA           NA                    NA
## 4735        0.16         0.41           NA           NA        4.6         15
## 4736        0.03         0.41           NA           NA        7.8          6
## 4737        0.03         0.41           78           18        4.5       1136
## 4738        0.00         0.41           NA           NA                    NA
## 4739        0.06         0.41           NA           NA                    NA
## 4740        0.06         0.41           50            5        7.6         16
## 4741        0.00         0.41           NA           NA                    NA
## 4742        0.05         0.41           59            7        7.1          7
## 4743        0.07         0.41           75           51        6.4         36
## 4744        0.04         0.41           75           54        6.6         32
## 4745        0.04         0.41           56            6          6          4
## 4746        0.06         0.41           60           63        6.8        245
## 4747        0.03         0.41           77           54        7.3         79
## 4748        0.04         0.41           NA           NA                    NA
## 4749        0.03         0.41           84           11        8.5          6
## 4750        0.06         0.41           69           29        7.6         36
## 4751        0.03         0.41           66           11        7.5          4
## 4752        0.04         0.41           87           29          8         65
## 4753        0.06         0.41           54           48        5.7       1183
## 4754        0.00         0.41           NA           NA                    NA
## 4755        0.05         0.41           50           26          5         14
## 4756        0.04         0.40           74           51        8.1         50
## 4757        0.03         0.40           NA           NA                    NA
## 4758        0.03         0.40           62           10        8.8          4
## 4759        0.00         0.40           NA           NA                    NA
## 4760        0.03         0.40           68           57        8.6         87
## 4761        0.04         0.40           43           51        5.6         70
## 4762        0.00         0.40           NA           NA                    NA
## 4763        0.01         0.40           71           16        8.2          9
## 4764        0.04         0.40           43            7        7.1          7
## 4765        0.03         0.40           NA           NA        tbd         NA
## 4766        0.03         0.40           51           23        4.7         30
## 4767        0.02         0.40           79           43        8.5         20
## 4768        0.02         0.40           77           10        8.6         46
## 4769        0.03         0.40           NA           NA                    NA
## 4770        0.07         0.40           NA           NA        tbd         NA
## 4771        0.06         0.40           72           59        6.8        315
## 4772        0.06         0.40           93            4          9        255
## 4773        0.00         0.40           NA           NA                    NA
## 4774        0.05         0.40           NA           NA        8.6         11
## 4775        0.05         0.40           73           24        7.8          6
## 4776        0.05         0.40           60           23        tbd         NA
## 4777        0.06         0.40           NA           NA                    NA
## 4778        0.00         0.40           NA           NA                    NA
## 4779        0.00         0.40           NA           NA                    NA
## 4780        0.05         0.40           59           38        5.7         20
## 4781        0.01         0.40           68           16        8.5         10
## 4782        0.00         0.40           NA           NA                    NA
## 4783        0.03         0.40           NA           NA          5          9
## 4784        0.03         0.40           76           47        8.3         70
## 4785        0.05         0.40           67            6          7          8
## 4786        0.01         0.40           NA           NA        tbd         NA
## 4787        0.06         0.40           85           23        8.6        672
## 4788        0.03         0.40           NA           NA                    NA
## 4789        0.01         0.40           76           43        8.8         18
## 4790        0.03         0.40           NA           NA                    NA
## 4791        0.01         0.40           49            6        tbd         NA
## 4792        0.00         0.40           NA           NA                    NA
## 4793        0.03         0.40           NA           NA        7.4         30
## 4794        0.03         0.40           78           75        8.5        495
## 4795        0.03         0.40           59           12        tbd         NA
## 4796        0.00         0.40           NA           NA                    NA
## 4797        0.03         0.40           NA           NA                    NA
## 4798        0.03         0.40           NA           NA                    NA
## 4799        0.05         0.40           71           39        7.4        169
## 4800        0.27         0.40           NA           NA        7.1         25
## 4801        0.00         0.40           NA           NA                    NA
## 4802        0.00         0.40           NA           NA                    NA
## 4803        0.00         0.40           NA           NA                    NA
## 4804        0.00         0.40           NA           NA                    NA
## 4805        0.00         0.40           NA           NA                    NA
## 4806        0.05         0.40           61           11        5.7         18
## 4807        0.08         0.40           NA           NA                    NA
## 4808        0.08         0.40           51           24          5          7
## 4809        0.05         0.40           66           12        4.3          6
## 4810        0.03         0.40           87            6        4.6        441
## 4811        0.03         0.40           NA           NA                    NA
## 4812        0.05         0.40           NA           NA        tbd         NA
## 4813        0.05         0.40           81           32          9         21
## 4814        0.03         0.40           66           21        7.8        111
## 4815        0.05         0.40           NA           NA        tbd         NA
## 4816        0.04         0.40           77           60        8.1         40
## 4817        0.01         0.40           NA           NA                    NA
## 4818        0.03         0.40           73           31        7.3         29
## 4819        0.03         0.40           71            7        6.5         11
## 4820        0.03         0.40           NA           NA                    NA
## 4821        0.01         0.40           80           21        8.3         13
## 4822        0.07         0.40           86            7        6.6        286
## 4823        0.01         0.40           57           24        6.7          6
## 4824        0.03         0.40           NA           NA        tbd         NA
## 4825        0.02         0.40           73           19        8.4         16
## 4826        0.03         0.40           NA           NA                    NA
## 4827        0.06         0.40           NA           NA                    NA
## 4828        0.01         0.40           NA           NA                    NA
## 4829        0.01         0.40           53            4        tbd         NA
## 4830        0.02         0.40           NA           NA        tbd         NA
## 4831        0.03         0.40           NA           NA                    NA
## 4832        0.03         0.40           NA           NA        tbd         NA
## 4833        0.03         0.40           81           30        8.5         37
## 4834        0.05         0.40           77           46        7.9       1238
## 4835        0.04         0.40           NA           NA                    NA
## 4836        0.00         0.40           NA           NA                    NA
## 4837        0.04         0.40           NA           NA        7.2         40
## 4838        0.01         0.40           NA           NA                    NA
## 4839        0.02         0.40           76           15        7.5          6
## 4840        0.07         0.40           67           31        7.4          7
## 4841        0.03         0.40           61           23        7.1         36
## 4842        0.04         0.40           NA           NA        tbd         NA
## 4843        0.03         0.40           NA           NA                    NA
## 4844        0.05         0.40           73           39        8.3         22
## 4845        0.04         0.40           NA           NA                    NA
## 4846        0.04         0.40           NA           NA        tbd         NA
## 4847        0.04         0.40           55           17          6          7
## 4848        0.03         0.40           NA           NA                    NA
## 4849        0.05         0.40           76           14        8.8         72
## 4850        0.00         0.40           NA           NA                    NA
## 4851        0.01         0.40           74           31        8.9         13
## 4852        0.03         0.40           57           18        7.2          9
## 4853        0.00         0.40           NA           NA                    NA
## 4854        0.03         0.40           NA           NA                    NA
## 4855        0.03         0.40           85           51        8.3         87
## 4856        0.05         0.40           71            7        8.5          8
## 4857        0.05         0.39           66           44        8.5         20
## 4858        0.03         0.39           NA           NA                    NA
## 4859        0.05         0.39           77           33        8.3         39
## 4860        0.04         0.39           57            8        3.1          9
## 4861        0.05         0.39           36            7        6.4         17
## 4862        0.02         0.39           77           53        7.4         20
## 4863        0.03         0.39           NA           NA        tbd         NA
## 4864        0.05         0.39           66            4        6.7         10
## 4865        0.04         0.39           NA           NA        5.3          4
## 4866        0.00         0.39           NA           NA                    NA
## 4867        0.03         0.39           61            4        7.6         10
## 4868        0.00         0.39           NA           NA                    NA
## 4869        0.03         0.39           84           68        8.8        184
## 4870        0.03         0.39           62            5        tbd         NA
## 4871        0.04         0.39           NA           NA        tbd         NA
## 4872        0.03         0.39           NA           NA                    NA
## 4873        0.00         0.39           NA           NA                    NA
## 4874        0.00         0.39           NA           NA                    NA
## 4875        0.04         0.39           71           59        6.3         23
## 4876        0.01         0.39           69            9          7          8
## 4877        0.01         0.39           NA           NA        tbd         NA
## 4878        0.02         0.39           65           26        7.3         47
## 4879        0.05         0.39           NA           NA        7.4         14
## 4880        0.06         0.39           NA           NA                    NA
## 4881        0.06         0.39           94           55        8.8       3559
## 4882        0.07         0.39           38           27        2.8         23
## 4883        0.01         0.39           72           30        7.3          9
## 4884        0.02         0.39           70           53        7.3        146
## 4885        0.06         0.39           71           33        5.7         14
## 4886        0.00         0.39           NA           NA                    NA
## 4887        0.06         0.39           NA           NA                    NA
## 4888        0.04         0.39           87           14        8.6        514
## 4889        0.03         0.39           75           30          7         24
## 4890        0.03         0.39           NA           NA                    NA
## 4891        0.06         0.39           NA           NA        7.3          8
## 4892        0.03         0.39           NA           NA        tbd         NA
## 4893        0.00         0.39           NA           NA                    NA
## 4894        0.03         0.39           49           18        5.3         16
## 4895        0.03         0.39           NA           NA                    NA
## 4896        0.03         0.39           NA           NA        tbd         NA
## 4897        0.01         0.39           69           30          6          9
## 4898        0.00         0.39           NA           NA                    NA
## 4899        0.03         0.39           NA           NA                    NA
## 4900        0.06         0.39           77           32        8.2         87
## 4901        0.04         0.39           63           68        7.2        201
## 4902        0.06         0.39           NA           NA                    NA
## 4903        0.05         0.39           NA           NA                    NA
## 4904        0.00         0.39           NA           NA                    NA
## 4905        0.01         0.39           92           27        8.7         25
## 4906        0.03         0.39           44           18        5.3          9
## 4907        0.01         0.39           79            9        7.6          5
## 4908        0.00         0.39           NA           NA                    NA
## 4909        0.05         0.39           NA           NA                    NA
## 4910        0.00         0.39           NA           NA                    NA
## 4911        0.00         0.39           NA           NA                    NA
## 4912        0.03         0.39           66           53        7.6         70
## 4913        0.00         0.39           NA           NA                    NA
## 4914        0.07         0.39           72           49          8         68
## 4915        0.01         0.39           NA           NA                    NA
## 4916        0.03         0.39           63           64        7.3        461
## 4917        0.04         0.39           NA           NA                    NA
## 4918        0.06         0.39           79            7        5.2         45
## 4919        0.07         0.39           41           28        5.2         36
## 4920        0.05         0.39           NA           NA                    NA
## 4921        0.04         0.39           43           37        6.3         19
## 4922        0.03         0.39           NA           NA        tbd         NA
## 4923        0.04         0.39           62           13        8.4          8
## 4924        0.05         0.39           67           18        8.8         19
## 4925        0.06         0.39           64           11        6.1          9
## 4926        0.00         0.39           NA           NA                    NA
## 4927        0.05         0.39           NA           NA        5.6         14
## 4928        0.06         0.39           82           37        8.1         89
## 4929        0.03         0.39           NA           NA        tbd         NA
## 4930        0.05         0.39           79            9        7.3         13
## 4931        0.00         0.39           NA           NA                    NA
## 4932        0.00         0.39           NA           NA                    NA
## 4933        0.03         0.39           80           71        7.5        219
## 4934        0.05         0.39           68           19          8          6
## 4935        0.01         0.39           58           11        7.5          6
## 4936        0.03         0.39           82           53        8.7        102
## 4937        0.00         0.39           NA           NA                    NA
## 4938        0.03         0.39           90           49          9        163
## 4939        0.05         0.39           66           20        7.5         13
## 4940        0.03         0.39           NA           NA                    NA
## 4941        0.07         0.39           NA           NA        8.2          6
## 4942        0.01         0.39           84           40        7.2         35
## 4943        0.05         0.39           65           10        tbd         NA
## 4944        0.05         0.39           NA           NA                    NA
## 4945        0.07         0.39           72            8        5.8         32
## 4946        0.06         0.39           70           47        7.6         43
## 4947        0.01         0.39           61           30        7.7         35
## 4948        0.05         0.39           76            4        tbd         NA
## 4949        0.00         0.39           NA           NA                    NA
## 4950        0.03         0.39           NA           NA                    NA
## 4951        0.03         0.39           NA           NA                    NA
## 4952        0.04         0.39           NA           NA        tbd         NA
## 4953        0.01         0.39           75            5        7.6         26
## 4954        0.04         0.39           68           21        5.4          9
## 4955        0.08         0.39           65           21          6          9
## 4956        0.04         0.39           71           74          7         77
## 4957        0.01         0.39           53            6        8.3          9
## 4958        0.05         0.39           71           52        6.3         86
## 4959        0.05         0.38           NA           NA                    NA
## 4960        0.06         0.38           71           41        6.9        143
## 4961        0.03         0.38           NA           NA                    NA
## 4962        0.09         0.38           NA           NA                    NA
## 4963        0.00         0.38           NA           NA                    NA
## 4964        0.02         0.38           82           42        8.7         83
## 4965        0.00         0.38           NA           NA                    NA
## 4966        0.03         0.38           NA           NA                    NA
## 4967        0.03         0.38           NA           NA                    NA
## 4968        0.04         0.38           33           12        6.2         30
## 4969        0.01         0.38           86           18        8.3         11
## 4970        0.05         0.38           38           10        3.9          7
## 4971        0.00         0.38           NA           NA                    NA
## 4972        0.02         0.38           NA           NA                    NA
## 4973        0.03         0.38           78           35        7.6         49
## 4974        0.01         0.38           NA           NA                    NA
## 4975        0.03         0.38           NA           NA                    NA
## 4976        0.03         0.38           78           27        8.2         97
## 4977        0.05         0.38           51           18        4.6          5
## 4978        0.03         0.38           72           20        8.4         16
## 4979        0.01         0.38           70           19          7         21
## 4980        0.03         0.38           77           13        7.9         28
## 4981        0.00         0.38           NA           NA                    NA
## 4982        0.00         0.38           NA           NA                    NA
## 4983        0.01         0.38           47           11        tbd         NA
## 4984        0.28         0.38           70            9        8.3          4
## 4985        0.05         0.38           74           24        7.8         19
## 4986        0.02         0.38           NA           NA        4.3         19
## 4987        0.03         0.38           NA           NA                    NA
## 4988        0.07         0.38           65           38        7.4         32
## 4989        0.07         0.38           78           51        6.3         87
## 4990        0.00         0.38           NA           NA                    NA
## 4991        0.03         0.38           NA           NA        tbd         NA
## 4992        0.01         0.38           54           19        5.7         24
## 4993        0.03         0.38           NA           NA                    NA
## 4994        0.03         0.38           52           11        5.4         23
## 4995        0.02         0.38           NA           NA                    NA
## 4996        0.03         0.38           NA           NA        7.4         98
## 4997        0.02         0.38           NA           NA                    NA
## 4998        0.05         0.38           60            7        5.1          7
## 4999        0.05         0.38           70           30        8.5         16
## 5000        0.00         0.38           NA           NA                    NA
## 5001        0.03         0.38           88           54        7.6       1137
## 5002        0.01         0.38           92           27        8.7         45
## 5003        0.02         0.38           78           46        7.8        167
## 5004        0.04         0.38           NA           NA                    NA
## 5005        0.05         0.38           NA           NA        tbd         NA
## 5006        0.01         0.38           NA           NA                    NA
## 5007        0.03         0.38           83           67        8.7         89
## 5008        0.05         0.38           60            9        8.8         25
## 5009        0.06         0.38           84           59        7.6        511
## 5010        0.02         0.38           NA           NA                    NA
## 5011        0.03         0.38           NA           NA        1.7         23
## 5012        0.02         0.38           68           16        6.5         15
## 5013        0.01         0.38           57            4        tbd         NA
## 5014        0.05         0.38           63           23        tbd         NA
## 5015        0.00         0.38           NA           NA                    NA
## 5016        0.05         0.38           NA           NA        tbd         NA
## 5017        0.05         0.38           50            4          6          5
## 5018        0.17         0.38           49           10        7.4         31
## 5019        0.06         0.38           84           22        8.1       1263
## 5020        0.02         0.38           83           60          9        127
## 5021        0.00         0.38           NA           NA                    NA
## 5022        0.02         0.38           NA           NA                    NA
## 5023        0.01         0.38           79           28        8.9         20
## 5024        0.05         0.38           53           13        8.2          5
## 5025        0.02         0.38           NA           NA                    NA
## 5026        0.01         0.38           NA           NA                    NA
## 5027        0.06         0.38           82           32        8.8        132
## 5028        0.00         0.38           NA           NA                    NA
## 5029        0.07         0.38           NA           NA                    NA
## 5030        0.07         0.38           73            4        5.8          4
## 5031        0.04         0.38           54            4        tbd         NA
## 5032        0.01         0.38           55           21          6         22
## 5033        0.00         0.38           NA           NA                    NA
## 5034        0.01         0.38           NA           NA                    NA
## 5035        0.02         0.38           NA           NA        tbd         NA
## 5036        0.07         0.38           49            8        tbd         NA
## 5037        0.02         0.38           NA           NA                    NA
## 5038        0.06         0.38           70           34        6.3         21
## 5039        0.03         0.38           70            4        8.1         12
## 5040        0.02         0.38           NA           NA                    NA
## 5041        0.26         0.38           56            4        5.8          6
## 5042        0.00         0.38           NA           NA                    NA
## 5043        0.04         0.38           70            7        6.3          7
## 5044        0.03         0.38           61           22        6.6         19
## 5045        0.09         0.38           72            8        tbd         NA
## 5046        0.03         0.38           NA           NA        4.5          6
## 5047        0.03         0.38           NA           NA        tbd         NA
## 5048        0.03         0.38           NA           NA                    NA
## 5049        0.05         0.38           81           52        7.7        519
## 5050        0.03         0.38           NA           NA        tbd         NA
## 5051        0.00         0.38           NA           NA                    NA
## 5052        0.05         0.38           78           30          7          9
## 5053        0.00         0.38           NA           NA                    NA
## 5054        0.01         0.38           75           16        8.6          8
## 5055        0.03         0.38           NA           NA        4.8          5
## 5056        0.07         0.38           NA           NA        7.8         12
## 5057        0.02         0.38           73           43        6.7         18
## 5058        0.06         0.38           77            6        7.1         25
## 5059        0.03         0.38           68           21          7        106
## 5060        0.01         0.38           67           22        7.3          8
## 5061        0.03         0.38           NA           NA                    NA
## 5062        0.03         0.38           NA           NA        tbd         NA
## 5063        0.03         0.37           NA           NA                    NA
## 5064        0.03         0.37           80            8        6.9         22
## 5065        0.08         0.37           82           20        6.6        173
## 5066        0.00         0.37           NA           NA                    NA
## 5067        0.05         0.37           NA           NA                    NA
## 5068        0.02         0.37           72           31        5.8         21
## 5069        0.03         0.37           NA           NA                    NA
## 5070        0.03         0.37           NA           NA        tbd         NA
## 5071        0.10         0.37           28            4        4.1          7
## 5072        0.02         0.37           NA           NA                    NA
## 5073        0.06         0.37           NA           NA                    NA
## 5074        0.03         0.37           NA           NA        8.6         11
## 5075        0.00         0.37           NA           NA                    NA
## 5076        0.04         0.37           54           11        3.5          6
## 5077        0.21         0.37           NA           NA        4.3         11
## 5078        0.01         0.37           76           36        7.2         21
## 5079        0.01         0.37           76           26        tbd         NA
## 5080        0.03         0.37           66           22        3.9         37
## 5081        0.03         0.37           NA           NA        6.1         18
## 5082        0.08         0.37           63            4        tbd         NA
## 5083        0.03         0.37           80           20        7.4          8
## 5084        0.02         0.37           NA           NA                    NA
## 5085        0.05         0.37           NA           NA        tbd         NA
## 5086        0.03         0.37           66           14        7.8         37
## 5087        0.00         0.37           NA           NA                    NA
## 5088        0.01         0.37           39            7        4.7         14
## 5089        0.05         0.37           NA           NA        7.8         19
## 5090        0.05         0.37           NA           NA        8.7         15
## 5091        0.03         0.37           NA           NA        tbd         NA
## 5092        0.05         0.37           86           14        6.7        556
## 5093        0.05         0.37           51           34          7         15
## 5094        0.05         0.37           84           23        7.9          7
## 5095        0.04         0.37           66           19        6.4          9
## 5096        0.00         0.37           NA           NA                    NA
## 5097        0.03         0.37           55           44        5.9         49
## 5098        0.00         0.37           NA           NA                    NA
## 5099        0.05         0.37           62           15        8.3         19
## 5100        0.02         0.37           NA           NA                    NA
## 5101        0.03         0.37           NA           NA        tbd         NA
## 5102        0.06         0.37           77           47        6.9         38
## 5103        0.04         0.37           70           30        6.3          7
## 5104        0.03         0.37           75           52        6.7         80
## 5105        0.07         0.37           74           28        3.8         26
## 5106        0.03         0.37           85           31        8.2         57
## 5107        0.02         0.37           NA           NA        tbd         NA
## 5108        0.05         0.37           NA           NA                    NA
## 5109        0.00         0.37           NA           NA                    NA
## 5110        0.00         0.37           NA           NA                    NA
## 5111        0.06         0.37           79           32        5.2       1618
## 5112        0.00         0.37           NA           NA                    NA
## 5113        0.01         0.37           65           31        8.1         27
## 5114        0.10         0.37           65           10        7.4         14
## 5115        0.06         0.37           84           39        8.5        210
## 5116        0.02         0.37           83           52        8.2         66
## 5117        0.04         0.37           51           10        5.5         22
## 5118        0.01         0.37           74           18        8.3         19
## 5119        0.00         0.37           NA           NA                    NA
## 5120        0.03         0.37           80           54        7.3         84
## 5121        0.05         0.37           85           50        8.7       1290
## 5122        0.03         0.37           66           15        7.1         14
## 5123        0.01         0.37           NA           NA                    NA
## 5124        0.06         0.37           NA           NA        5.5         81
## 5125        0.06         0.37           NA           NA        4.2          6
## 5126        0.03         0.37           68           10        6.8          8
## 5127        0.03         0.37           NA           NA        tbd         NA
## 5128        0.11         0.37           73            6        7.8         11
## 5129        0.01         0.37           NA           NA                    NA
## 5130        0.03         0.37           72           55        5.9        102
## 5131        0.03         0.37           NA           NA                    NA
## 5132        0.05         0.37           85           46        8.1        196
## 5133        0.03         0.37           73           23        7.4         14
## 5134        0.00         0.37           NA           NA                    NA
## 5135        0.04         0.37           59           27        7.7         42
## 5136        0.04         0.37           73           33        7.7         21
## 5137        0.04         0.37           68           30        7.9         15
## 5138        0.00         0.37           NA           NA                    NA
## 5139        0.03         0.37           56            4        2.7          6
## 5140        0.00         0.37           NA           NA                    NA
## 5141        0.10         0.37           52           11        7.6         20
## 5142        0.04         0.37           62           61        7.5         26
## 5143        0.02         0.37           81           34          9         59
## 5144        0.04         0.37           NA           NA                    NA
## 5145        0.03         0.37           79           34        8.5         39
## 5146        0.00         0.37           NA           NA                    NA
## 5147        0.03         0.37           NA           NA          8          9
## 5148        0.04         0.37           79            9        8.3         12
## 5149        0.02         0.37           55           12        5.7         11
## 5150        0.00         0.37           NA           NA                    NA
## 5151        0.03         0.37           73           42        7.4        109
## 5152        0.06         0.37           NA           NA                    NA
## 5153        0.03         0.37           81           19        7.5         14
## 5154        0.05         0.37           71           17          8         15
## 5155        0.03         0.37           75           16        7.9         11
## 5156        0.03         0.36           NA           NA                    NA
## 5157        0.01         0.36           82           17        8.8          6
## 5158        0.03         0.36           67           41        8.3         63
## 5159        0.01         0.36           60           35        6.7         14
## 5160        0.07         0.36           69           18        5.8        338
## 5161        0.00         0.36           NA           NA                    NA
## 5162        0.02         0.36           48           17        7.9         37
## 5163        0.03         0.36           87           51        8.6        105
## 5164        0.00         0.36           NA           NA                    NA
## 5165        0.05         0.36           58           15        7.8         14
## 5166        0.03         0.36           81           78        5.5       1027
## 5167        0.06         0.36           NA           NA        1.6         45
## 5168        0.03         0.36           85           46        8.7        111
## 5169        0.03         0.36           NA           NA        tbd         NA
## 5170        0.03         0.36           NA           NA        tbd         NA
## 5171        0.04         0.36           89           55        8.5       2530
## 5172        0.03         0.36           76           12        8.8         11
## 5173        0.02         0.36           NA           NA                    NA
## 5174        0.00         0.36           NA           NA                    NA
## 5175        0.03         0.36           69           82        7.4        662
## 5176        0.06         0.36           59           41        6.4         28
## 5177        0.00         0.36           NA           NA                    NA
## 5178        0.03         0.36           68           57        6.3         29
## 5179        0.00         0.36           NA           NA                    NA
## 5180        0.05         0.36           83           17        8.1         12
## 5181        0.05         0.36           53            6          6          8
## 5182        0.05         0.36           50           24          7         21
## 5183        0.00         0.36           NA           NA                    NA
## 5184        0.01         0.36           73           21        7.9         24
## 5185        0.03         0.36           NA           NA                    NA
## 5186        0.06         0.36           71           48        7.4         62
## 5187        0.03         0.36           77           13        8.5         23
## 5188        0.05         0.36           60           12        7.1          8
## 5189        0.03         0.36           70            4        7.1         27
## 5190        0.02         0.36           NA           NA                    NA
## 5191        0.03         0.36           NA           NA                    NA
## 5192        0.01         0.36           72            7        9.3         18
## 5193        0.04         0.36           70           23        8.5         14
## 5194        0.02         0.36           NA           NA                    NA
## 5195        0.01         0.36           NA           NA                    NA
## 5196        0.03         0.36           86           51        8.5         70
## 5197        0.00         0.36           NA           NA                    NA
## 5198        0.02         0.36           NA           NA                    NA
## 5199        0.05         0.36           51           16        tbd         NA
## 5200        0.01         0.36           84           27        8.7         15
## 5201        0.00         0.36           NA           NA                    NA
## 5202        0.00         0.36           NA           NA                    NA
## 5203        0.01         0.36           NA           NA                    NA
## 5204        0.04         0.36           NA           NA                    NA
## 5205        0.03         0.36           49           16        6.2         14
## 5206        0.03         0.36           63            5        7.1         12
## 5207        0.02         0.36           54           16        6.3          4
## 5208        0.01         0.36           58            7        tbd         NA
## 5209        0.03         0.36           NA           NA        tbd         NA
## 5210        0.03         0.36           NA           NA        tbd         NA
## 5211        0.01         0.36           81           66        7.5         23
## 5212        0.02         0.36           80           39        8.4         57
## 5213        0.01         0.36           NA           NA                    NA
## 5214        0.00         0.36           NA           NA                    NA
## 5215        0.02         0.36           NA           NA                    NA
## 5216        0.06         0.36           73           10        6.8         20
## 5217        0.01         0.36           91           25        8.9         45
## 5218        0.00         0.36           NA           NA                    NA
## 5219        0.05         0.36           59            6        8.7         32
## 5220        0.02         0.36           NA           NA                    NA
## 5221        0.00         0.36           NA           NA                    NA
## 5222        0.03         0.36           76           68        7.6         96
## 5223        0.00         0.36           NA           NA                    NA
## 5224        0.03         0.36           60           17        5.9         11
## 5225        0.01         0.36           57           25        4.8         19
## 5226        0.05         0.36           NA           NA                    NA
## 5227        0.05         0.36           72           39        8.2         33
## 5228        0.02         0.36           NA           NA                    NA
## 5229        0.00         0.36           NA           NA                    NA
## 5230        0.01         0.36           NA           NA                    NA
## 5231        0.03         0.36           83            9        7.7        131
## 5232        0.10         0.36           53            4        5.5          6
## 5233        0.02         0.36           NA           NA                    NA
## 5234        0.00         0.36           NA           NA                    NA
## 5235        0.01         0.36           77           13        7.2         12
## 5236        0.00         0.36           NA           NA                    NA
## 5237        0.02         0.36           NA           NA                    NA
## 5238        0.00         0.36           NA           NA                    NA
## 5239        0.05         0.36           45           23        5.3         10
## 5240        0.05         0.36           NA           NA        8.5          4
## 5241        0.00         0.36           NA           NA                    NA
## 5242        0.03         0.36           31           13        2.7         18
## 5243        0.02         0.36           NA           NA        tbd         NA
## 5244        0.02         0.36           NA           NA                    NA
## 5245        0.01         0.36           49           19        5.4          9
## 5246        0.05         0.35           78           15        8.4        198
## 5247        0.05         0.35           NA           NA                    NA
## 5248        0.02         0.35           NA           NA                    NA
## 5249        0.05         0.35           79           63        8.2        191
## 5250        0.02         0.35           NA           NA                    NA
## 5251        0.01         0.35           NA           NA                    NA
## 5252        0.05         0.35           NA           NA        8.9         17
## 5253        0.03         0.35           81           45        8.7         45
## 5254        0.03         0.35           NA           NA        tbd         NA
## 5255        0.01         0.35           NA           NA                    NA
## 5256        0.06         0.35           NA           NA                    NA
## 5257        0.01         0.35           69           28        7.5         52
## 5258        0.03         0.35           84           17          8       1671
## 5259        0.02         0.35           76           43        7.6        109
## 5260        0.00         0.35           NA           NA                    NA
## 5261        0.03         0.35           NA           NA                    NA
## 5262        0.03         0.35           NA           NA                    NA
## 5263        0.03         0.35           77           28        6.2         26
## 5264        0.00         0.35           NA           NA                    NA
## 5265        0.03         0.35           NA           NA                    NA
## 5266        0.05         0.35           63           20        tbd         NA
## 5267        0.00         0.35           NA           NA                    NA
## 5268        0.04         0.35           85           55        8.4         44
## 5269        0.09         0.35           69           10        6.9          7
## 5270        0.01         0.35           68            8        tbd         NA
## 5271        0.05         0.35           63           21        8.3         14
## 5272        0.01         0.35           NA           NA        9.1         22
## 5273        0.03         0.35           NA           NA        1.1         10
## 5274        0.03         0.35           NA           NA                    NA
## 5275        0.05         0.35           NA           NA        8.8          4
## 5276        0.04         0.35           81           25        9.1         22
## 5277        0.00         0.35           NA           NA                    NA
## 5278        0.05         0.35           59           50          6         36
## 5279        0.05         0.35           73           34        7.2          9
## 5280        0.00         0.35           NA           NA                    NA
## 5281        0.00         0.35           NA           NA                    NA
## 5282        0.03         0.35           79            8        6.8         16
## 5283        0.04         0.35           71           20        8.6         34
## 5284        0.04         0.35           56           13        5.3          8
## 5285        0.02         0.35           83           11        8.4         25
## 5286        0.05         0.35           48           43        3.8        212
## 5287        0.03         0.35           85           26        7.1        216
## 5288        0.05         0.35           66           45        7.8         49
## 5289        0.01         0.35           39           13        5.8         11
## 5290        0.00         0.35           NA           NA                    NA
## 5291        0.03         0.35           67           34        8.2         21
## 5292        0.02         0.35           71           44          8        136
## 5293        0.03         0.35           80           20        8.4        440
## 5294        0.06         0.35           NA           NA                    NA
## 5295        0.01         0.35           NA           NA                    NA
## 5296        0.02         0.35           81           34        6.9         97
## 5297        0.04         0.35           65           28        6.6         48
## 5298        0.06         0.35           NA           NA                    NA
## 5299        0.01         0.35           75           12        7.8         14
## 5300        0.01         0.35           NA           NA        tbd         NA
## 5301        0.09         0.35           NA           NA        3.2         19
## 5302        0.04         0.35           NA           NA                    NA
## 5303        0.02         0.35           79           63          7         55
## 5304        0.02         0.35           NA           NA                    NA
## 5305        0.01         0.35           49           12        tbd         NA
## 5306        0.06         0.35           59           21        6.9        145
## 5307        0.04         0.35           48           50          5         53
## 5308        0.04         0.35           NA           NA                    NA
## 5309        0.04         0.35           66            4        tbd         NA
## 5310        0.03         0.35           NA           NA        4.4         59
## 5311        0.04         0.35           NA           NA                    NA
## 5312        0.04         0.35           NA           NA        7.6          9
## 5313        0.02         0.35           87           31        8.7         34
## 5314        0.02         0.35           27            9        4.8         26
## 5315        0.04         0.35           70           15        6.9          9
## 5316        0.02         0.35           NA           NA                    NA
## 5317        0.04         0.35           68           20        5.6         12
## 5318        0.03         0.35           71           18        5.1         15
## 5319        0.04         0.35           NA           NA        tbd         NA
## 5320        0.04         0.35           85           31        8.7         14
## 5321        0.05         0.35           69           50        4.7        578
## 5322        0.03         0.35           63           12        6.6         68
## 5323        0.03         0.35           NA           NA                    NA
## 5324        0.01         0.35           81           30          8          4
## 5325        0.04         0.35           83           29        9.1         17
## 5326        0.04         0.35           81           28        8.9         17
## 5327        0.03         0.35           77           18        7.5         37
## 5328        0.00         0.35           NA           NA                    NA
## 5329        0.02         0.35           NA           NA                    NA
## 5330        0.03         0.35           59           12        7.8          4
## 5331        0.04         0.35           60           30        6.4         14
## 5332        0.02         0.35           86           12        8.9         37
## 5333        0.00         0.35           NA           NA                    NA
## 5334        0.04         0.35           NA           NA        tbd         NA
## 5335        0.03         0.35           83           30        8.5         32
## 5336        0.01         0.35           61           21        9.3          6
## 5337        0.04         0.35           86           18        8.5       3552
## 5338        0.04         0.35           35           21        4.1         28
## 5339        0.05         0.35           81           52        7.9        110
## 5340        0.02         0.34           NA           NA                    NA
## 5341        0.01         0.34           NA           NA                    NA
## 5342        0.03         0.34           85           14        6.7          7
## 5343        0.03         0.34           69           48        6.3        108
## 5344        0.00         0.34           NA           NA                    NA
## 5345        0.01         0.34           NA           NA        tbd         NA
## 5346        0.04         0.34           NA           NA                    NA
## 5347        0.04         0.34           NA           NA        tbd         NA
## 5348        0.03         0.34           62           23        9.1         24
## 5349        0.03         0.34           69            6        3.4        256
## 5350        0.06         0.34           57           41        5.6         27
## 5351        0.00         0.34           98           24        8.8        200
## 5352        0.02         0.34           89           14        8.5         15
## 5353        0.03         0.34           NA           NA                    NA
## 5354        0.03         0.34           NA           NA        7.6          5
## 5355        0.01         0.34           66           12        tbd         NA
## 5356        0.03         0.34           66           14        tbd         NA
## 5357        0.03         0.34           74            6        5.2          9
## 5358        0.03         0.34           75           64        7.2         45
## 5359        0.06         0.34           73           37        8.7         62
## 5360        0.03         0.34           83           35        7.5         90
## 5361        0.00         0.34           NA           NA                    NA
## 5362        0.01         0.34           73            9        6.6         14
## 5363        0.02         0.34           77           21        9.1         18
## 5364        0.04         0.34           61           10        5.8          4
## 5365        0.04         0.34           65           34        8.6         20
## 5366        0.00         0.34           NA           NA                    NA
## 5367        0.02         0.34           75           38        7.6         45
## 5368        0.25         0.34           72           10        8.3          6
## 5369        0.01         0.34           NA           NA                    NA
## 5370        0.02         0.34           NA           NA                    NA
## 5371        0.04         0.34           75           11        tbd         NA
## 5372        0.01         0.34           78           44        8.8         15
## 5373        0.03         0.34           75           28        7.1         23
## 5374        0.04         0.34           65           15        8.1          7
## 5375        0.00         0.34           NA           NA                    NA
## 5376        0.00         0.34           NA           NA                    NA
## 5377        0.02         0.34           NA           NA                    NA
## 5378        0.03         0.34           NA           NA                    NA
## 5379        0.06         0.34           45           17        4.3          8
## 5380        0.04         0.34           80           82        2.1       6157
## 5381        0.03         0.34           80           49          8         47
## 5382        0.02         0.34           NA           NA        tbd         NA
## 5383        0.01         0.34           76           36          6        263
## 5384        0.02         0.34           NA           NA        6.8          6
## 5385        0.01         0.34           70           28        6.5         10
## 5386        0.00         0.34           NA           NA                    NA
## 5387        0.07         0.34           NA           NA                    NA
## 5388        0.00         0.34           NA           NA                    NA
## 5389        0.03         0.34           91            6        7.9        218
## 5390        0.02         0.34           67            5        7.6         10
## 5391        0.04         0.34           54            4        6.7         13
## 5392        0.03         0.34           69           16        7.3          8
## 5393        0.00         0.34           NA           NA                    NA
## 5394        0.03         0.34           56           51        7.3         58
## 5395        0.00         0.34           NA           NA                    NA
## 5396        0.05         0.34           69           35        7.2         40
## 5397        0.02         0.34           NA           NA                    NA
## 5398        0.00         0.34           NA           NA                    NA
## 5399        0.04         0.34           60           44        6.3         18
## 5400        0.01         0.34           75           29        8.6         17
## 5401        0.04         0.34           59           16        7.2         26
## 5402        0.00         0.34           NA           NA                    NA
## 5403        0.02         0.34           NA           NA                    NA
## 5404        0.03         0.34           NA           NA                    NA
## 5405        0.03         0.34           NA           NA                    NA
## 5406        0.03         0.34           85           44        7.3        131
## 5407        0.02         0.34           NA           NA                    NA
## 5408        0.03         0.34           NA           NA                    NA
## 5409        0.03         0.34           77           49        7.9         78
## 5410        0.02         0.34           NA           NA        tbd         NA
## 5411        0.01         0.34           71           19        tbd         NA
## 5412        0.07         0.34           NA           NA                    NA
## 5413        0.05         0.34           NA           NA        6.3         14
## 5414        0.01         0.34           47            9        6.8          4
## 5415        0.01         0.34           57           25          8          8
## 5416        0.03         0.34           79           76        8.1        107
## 5417        0.00         0.34           NA           NA                    NA
## 5418        0.02         0.34           62           22          7         26
## 5419        0.05         0.34           60           39        6.2         11
## 5420        0.22         0.34           NA           NA                    NA
## 5421        0.04         0.34           NA           NA                    NA
## 5422        0.03         0.34           NA           NA        tbd         NA
## 5423        0.02         0.34           82           41        8.7         32
## 5424        0.01         0.34           52            8        6.5          8
## 5425        0.02         0.34           75           37        7.1         26
## 5426        0.03         0.34           NA           NA        tbd         NA
## 5427        0.02         0.34           NA           NA                    NA
## 5428        0.04         0.34           69           16        6.8          6
## 5429        0.01         0.34           NA           NA                    NA
## 5430        0.01         0.34           61           37        6.6         19
## 5431        0.03         0.34           58           42        5.3         21
## 5432        0.03         0.34           NA           NA          3          8
## 5433        0.04         0.34           67           20        tbd         NA
## 5434        0.03         0.33           75           43        8.2         51
## 5435        0.00         0.33           NA           NA                    NA
## 5436        0.01         0.33           66           14          6         27
## 5437        0.03         0.33           54            7        tbd         NA
## 5438        0.02         0.33           NA           NA                    NA
## 5439        0.03         0.33           88           25        7.7         41
## 5440        0.04         0.33           77           74        8.3        222
## 5441        0.04         0.33           NA           NA                    NA
## 5442        0.01         0.33           72           21        8.1         18
## 5443        0.02         0.33           NA           NA                    NA
## 5444        0.02         0.33           75            9        tbd         NA
## 5445        0.06         0.33           78           26        5.8         67
## 5446        0.02         0.33           78           27        8.6         32
## 5447        0.03         0.33           NA           NA                    NA
## 5448        0.03         0.33           75           17        7.8          6
## 5449        0.03         0.33           NA           NA                    NA
## 5450        0.02         0.33           87           45        8.2         74
## 5451        0.02         0.33           NA           NA                    NA
## 5452        0.00         0.33           NA           NA                    NA
## 5453        0.04         0.33           NA           NA        tbd         NA
## 5454        0.03         0.33           44           31        5.4         24
## 5455        0.03         0.33           64            9        6.4          7
## 5456        0.05         0.33           51           48        5.8          4
## 5457        0.01         0.33           76           26        8.7         47
## 5458        0.01         0.33           73           22        8.3          8
## 5459        0.01         0.33           69           25        7.7          9
## 5460        0.08         0.33           65           46        8.3         28
## 5461        0.03         0.33           91           18        9.1         72
## 5462        0.01         0.33           84           50        7.6         37
## 5463        0.04         0.33           NA           NA        tbd         NA
## 5464        0.01         0.33           82           17        tbd         NA
## 5465        0.03         0.33           79           31        8.2         51
## 5466        0.02         0.33           NA           NA                    NA
## 5467        0.01         0.33           75           22        8.6          8
## 5468        0.04         0.33           63           60        6.2         45
## 5469        0.03         0.33           68           65        6.8         55
## 5470        0.02         0.33           80            5        tbd         NA
## 5471        0.06         0.33           62            9        6.7         46
## 5472        0.03         0.33           62           16        7.6          7
## 5473        0.04         0.33           77           19        8.4         15
## 5474        0.07         0.33           52           15          6         82
## 5475        0.01         0.33           58            4        tbd         NA
## 5476        0.04         0.33           59           15        6.7          6
## 5477        0.02         0.33           NA           NA                    NA
## 5478        0.08         0.33           67            5        tbd         NA
## 5479        0.00         0.33           NA           NA                    NA
## 5480        0.00         0.33           NA           NA                    NA
## 5481        0.03         0.33           70           43        6.2         15
## 5482        0.03         0.33           80           35          8         27
## 5483        0.04         0.33           79            7        7.5         12
## 5484        0.04         0.33           78           16        tbd         NA
## 5485        0.03         0.33           NA           NA                    NA
## 5486        0.01         0.33           74           10        8.6         12
## 5487        0.16         0.33           NA           NA                    NA
## 5488        0.01         0.33           83           32          9         21
## 5489        0.01         0.33           82           10        tbd         NA
## 5490        0.01         0.33           59           32          9         24
## 5491        0.01         0.33           86           25        8.2         15
## 5492        0.00         0.33           NA           NA                    NA
## 5493        0.04         0.33           NA           NA                    NA
## 5494        0.03         0.33           78           35        8.6         84
## 5495        0.03         0.33           60            4        5.4          9
## 5496        0.00         0.33           NA           NA                    NA
## 5497        0.02         0.33           NA           NA                    NA
## 5498        0.02         0.33           84           54        6.4         42
## 5499        0.03         0.33           69           28        7.6         38
## 5500        0.00         0.33           NA           NA                    NA
## 5501        0.02         0.33           75           30        8.5         37
## 5502        0.01         0.33           76           28        7.9         14
## 5503        0.02         0.33           61           32        6.6         32
## 5504        0.03         0.33           54            8        tbd         NA
## 5505        0.04         0.33           84           42        8.9         74
## 5506        0.04         0.33           66           21        8.8          6
## 5507        0.03         0.33           74           43        7.7         96
## 5508        0.03         0.33           47            6        6.6          5
## 5509        0.04         0.33           NA           NA                    NA
## 5510        0.01         0.33           74            5        7.7         12
## 5511        0.02         0.33           83           14        8.4         12
## 5512        0.02         0.33           NA           NA                    NA
## 5513        0.04         0.33           NA           NA                    NA
## 5514        0.01         0.33           62            4        7.7          6
## 5515        0.00         0.33           NA           NA                    NA
## 5516        0.03         0.33           75           27        tbd         NA
## 5517        0.02         0.33           69            9        tbd         NA
## 5518        0.01         0.33           55            4        7.8          6
## 5519        0.01         0.33           NA           NA                    NA
## 5520        0.04         0.33           55           30        5.4        599
## 5521        0.00         0.33           NA           NA                    NA
## 5522        0.01         0.33           88           20        8.7         16
## 5523        0.00         0.33           NA           NA                    NA
## 5524        0.03         0.33           74           52        8.1         60
## 5525        0.02         0.33           NA           NA                    NA
## 5526        0.04         0.33           80           55        8.1        235
## 5527        0.02         0.33           NA           NA                    NA
## 5528        0.05         0.33           66           35        7.1         17
## 5529        0.05         0.33           NA           NA        8.3        111
## 5530        0.00         0.33           NA           NA                    NA
## 5531        0.01         0.33           63           11        6.9         11
## 5532        0.02         0.33           65            5        tbd         NA
## 5533        0.02         0.33           70            7        8.3          9
## 5534        0.00         0.33           NA           NA                    NA
## 5535        0.03         0.33           72           33        8.2        179
## 5536        0.01         0.33           76           14        tbd         NA
## 5537        0.00         0.33           NA           NA                    NA
## 5538        0.01         0.33           74           14        tbd         NA
## 5539        0.02         0.33           NA           NA        tbd         NA
## 5540        0.02         0.33           26           16        3.7          9
## 5541        0.02         0.33           NA           NA                    NA
## 5542        0.03         0.33           NA           NA        8.1         13
## 5543        0.01         0.33           71           21        5.7         12
## 5544        0.03         0.33           45           33        5.8         33
## 5545        0.04         0.33           NA           NA                    NA
## 5546        0.03         0.33           60            8        7.6         13
## 5547        0.08         0.33           NA           NA                    NA
## 5548        0.02         0.33           NA           NA        tbd         NA
## 5549        0.00         0.32           86           30        8.5       1660
## 5550        0.01         0.32           65            9        tbd         NA
## 5551        0.04         0.32           NA           NA        tbd         NA
## 5552        0.03         0.32           65           26        8.2          5
## 5553        0.03         0.32           NA           NA        tbd         NA
## 5554        0.00         0.32           NA           NA                    NA
## 5555        0.05         0.32           NA           NA                    NA
## 5556        0.03         0.32           41           11        4.6         12
## 5557        0.04         0.32           69           21        7.8         16
## 5558        0.02         0.32           75           22        tbd         NA
## 5559        0.02         0.32           NA           NA                    NA
## 5560        0.04         0.32           NA           NA        5.7          6
## 5561        0.03         0.32           76           48        7.4         41
## 5562        0.02         0.32           75           46        7.4         33
## 5563        0.02         0.32           NA           NA        tbd         NA
## 5564        0.03         0.32           75           25        6.3          4
## 5565        0.02         0.32           80           32        8.5         71
## 5566        0.03         0.32           66           10        6.1         18
## 5567        0.06         0.32           44           30        5.6         23
## 5568        0.04         0.32           87           28        8.3        974
## 5569        0.00         0.32           NA           NA                    NA
## 5570        0.00         0.32           NA           NA                    NA
## 5571        0.03         0.32           NA           NA        tbd         NA
## 5572        0.02         0.32           NA           NA        tbd         NA
## 5573        0.04         0.32           77           21        8.3         21
## 5574        0.03         0.32           66           17        5.8          8
## 5575        0.01         0.32           89           41        8.9         10
## 5576        0.02         0.32           NA           NA                    NA
## 5577        0.02         0.32           NA           NA                    NA
## 5578        0.03         0.32           50            8        5.2         16
## 5579        0.06         0.32           72           37        7.4        424
## 5580        0.02         0.32           68           38        7.3        269
## 5581        0.02         0.32           NA           NA                    NA
## 5582        0.03         0.32           72           31        7.1         35
## 5583        0.02         0.32           NA           NA                    NA
## 5584        0.03         0.32           67           18        7.2        128
## 5585        0.02         0.32           79           56        7.9         97
## 5586        0.02         0.32           82            6        9.3         78
## 5587        0.03         0.32           76           39        7.9         95
## 5588        0.00         0.32           NA           NA                    NA
## 5589        0.02         0.32           85           49        6.9         66
## 5590        0.00         0.32           NA           NA                    NA
## 5591        0.03         0.32           75           60        7.2         46
## 5592        0.02         0.32           NA           NA        7.8          4
## 5593        0.02         0.32           74           26        8.8          5
## 5594        0.04         0.32           NA           NA                    NA
## 5595        0.05         0.32           91           29        8.7       1736
## 5596        0.08         0.32           67           25        7.6         26
## 5597        0.04         0.32           74           37        8.4         42
## 5598        0.03         0.32           75           43        7.2         21
## 5599        0.02         0.32           73           52          7         40
## 5600        0.03         0.32           NA           NA        tbd         NA
## 5601        0.03         0.32           NA           NA        tbd         NA
## 5602        0.02         0.32           NA           NA        tbd         NA
## 5603        0.01         0.32           92           33        8.4         41
## 5604        0.05         0.32           43           21        5.7         27
## 5605        0.04         0.32           79           18        8.4          9
## 5606        0.00         0.32           NA           NA                    NA
## 5607        0.02         0.32           NA           NA                    NA
## 5608        0.03         0.32           NA           NA          6          5
## 5609        0.00         0.32           NA           NA                    NA
## 5610        0.03         0.32           88           62        7.5        535
## 5611        0.04         0.32           81            8        8.4         69
## 5612        0.02         0.32           58           30        7.5         24
## 5613        0.06         0.32           63           37        6.9         19
## 5614        0.01         0.32           64           15        tbd         NA
## 5615        0.03         0.32           NA           NA        tbd         NA
## 5616        0.02         0.32           85           10        7.8          5
## 5617        0.05         0.32           67           36        6.3         18
## 5618        0.02         0.32           45            4        tbd         NA
## 5619        0.02         0.32           NA           NA        tbd         NA
## 5620        0.08         0.32           55           13        5.7         10
## 5621        0.02         0.32           NA           NA                    NA
## 5622        0.04         0.32           59           12        8.5          6
## 5623        0.04         0.32           70           33        4.8        136
## 5624        0.02         0.32           NA           NA                    NA
## 5625        0.02         0.32           76           70        7.7        169
## 5626        0.04         0.32           82           25        7.8         10
## 5627        0.05         0.32           NA           NA                    NA
## 5628        0.08         0.32           49           11          6         32
## 5629        0.00         0.32           NA           NA                    NA
## 5630        0.00         0.32           NA           NA                    NA
## 5631        0.04         0.32           76           51        8.6         83
## 5632        0.03         0.32           NA           NA                    NA
## 5633        0.02         0.32           NA           NA                    NA
## 5634        0.01         0.32           NA           NA                    NA
## 5635        0.04         0.32           68           19          8          8
## 5636        0.02         0.32           NA           NA        tbd         NA
## 5637        0.01         0.32           NA           NA                    NA
## 5638        0.00         0.32           NA           NA                    NA
## 5639        0.04         0.32           78           15        8.3         12
## 5640        0.04         0.32           NA           NA        tbd         NA
## 5641        0.03         0.32           79           80        7.3        117
## 5642        0.01         0.32           NA           NA                    NA
## 5643        0.00         0.32           NA           NA                    NA
## 5644        0.00         0.32           NA           NA                    NA
## 5645        0.03         0.32           70            5        7.5          4
## 5646        0.02         0.32           NA           NA                    NA
## 5647        0.03         0.32           75           55        8.2        145
## 5648        0.00         0.32           NA           NA                    NA
## 5649        0.05         0.32           59           60        6.9        310
## 5650        0.05         0.32           79           28        7.6        127
## 5651        0.01         0.32           87           15        7.9          9
## 5652        0.00         0.32           NA           NA                    NA
## 5653        0.00         0.32           NA           NA                    NA
## 5654        0.00         0.32           NA           NA                    NA
## 5655        0.01         0.32           60           14        tbd         NA
## 5656        0.04         0.32           72           13        8.6         21
## 5657        0.02         0.32           NA           NA                    NA
## 5658        0.02         0.32           NA           NA                    NA
## 5659        0.00         0.32           NA           NA                    NA
## 5660        0.01         0.32           74           29        8.8         16
## 5661        0.01         0.32           NA           NA        tbd         NA
## 5662        0.02         0.32           NA           NA        tbd         NA
## 5663        0.03         0.32           63           48        6.9         18
## 5664        0.02         0.32           55            7        tbd         NA
## 5665        0.28         0.32           NA           NA                    NA
## 5666        0.02         0.32           82           69          8         86
## 5667        0.02         0.32           58           15        8.7         30
## 5668        0.03         0.32           63            5        tbd         NA
## 5669        0.02         0.32           NA           NA        tbd         NA
## 5670        0.01         0.32           81           50        7.9         31
## 5671        0.04         0.32           64           11        tbd         NA
## 5672        0.02         0.32           63           46        7.4         70
## 5673        0.03         0.32           NA           NA        7.5        178
## 5674        0.00         0.32           NA           NA                    NA
## 5675        0.02         0.32           NA           NA                    NA
## 5676        0.02         0.32           72           10        8.7         11
## 5677        0.02         0.32           NA           NA        tbd         NA
## 5678        0.05         0.32           75           39        5.4        555
## 5679        0.02         0.32           NA           NA        tbd         NA
## 5680        0.04         0.32           52           15        7.2         10
## 5681        0.20         0.32           87            4        6.4          5
## 5682        0.03         0.32           53           45        5.5         21
## 5683        0.05         0.32           63           13        6.6          9
## 5684        0.00         0.32           NA           NA                    NA
## 5685        0.03         0.32           82           39        8.2         68
## 5686        0.02         0.32           NA           NA        tbd         NA
## 5687        0.00         0.32           71           29        8.8         19
## 5688        0.01         0.32           80           31        9.3         96
## 5689        0.02         0.32           65           25        6.3         39
## 5690        0.03         0.32           NA           NA        5.7          6
## 5691        0.03         0.32           NA           NA        5.5         43
## 5692        0.02         0.32           NA           NA                    NA
## 5693        0.07         0.32           50           12        5.6          7
## 5694        0.00         0.32           NA           NA                    NA
## 5695        0.06         0.32           61           27        5.6         34
## 5696        0.06         0.32           72           42        7.6         24
## 5697        0.02         0.31           NA           NA                    NA
## 5698        0.09         0.31           57            8        tbd         NA
## 5699        0.00         0.31           NA           NA                    NA
## 5700        0.02         0.31           85           32        8.7         26
## 5701        0.02         0.31           77           30        7.5         17
## 5702        0.01         0.31           70           14        8.9         16
## 5703        0.01         0.31           77           23          8         21
## 5704        0.02         0.31           74           17        7.5       1170
## 5705        0.02         0.31           NA           NA                    NA
## 5706        0.03         0.31           64           38        6.8         11
## 5707        0.00         0.31           NA           NA                    NA
## 5708        0.02         0.31           58            9        8.1          9
## 5709        0.01         0.31           70            9        6.6          5
## 5710        0.00         0.31           NA           NA                    NA
## 5711        0.00         0.31           NA           NA                    NA
## 5712        0.00         0.31           NA           NA                    NA
## 5713        0.01         0.31           NA           NA                    NA
## 5714        0.02         0.31           NA           NA                    NA
## 5715        0.02         0.31           NA           NA          3          4
## 5716        0.01         0.31           72           21        7.8         12
## 5717        0.04         0.31           59           29        7.9         52
## 5718        0.02         0.31           73           11        8.4         14
## 5719        0.03         0.31           58           10        8.1         39
## 5720        0.02         0.31           61           33        7.7        237
## 5721        0.02         0.31           82           39        7.9        153
## 5722        0.02         0.31           NA           NA        7.9         11
## 5723        0.04         0.31           NA           NA                    NA
## 5724        0.02         0.31           NA           NA                    NA
## 5725        0.01         0.31           NA           NA                    NA
## 5726        0.04         0.31           NA           NA        tbd         NA
## 5727        0.01         0.31           73           39        7.3         20
## 5728        0.02         0.31           63           16        tbd         NA
## 5729        0.03         0.31           49           30        4.8         13
## 5730        0.01         0.31           78           37        6.6         19
## 5731        0.03         0.31           68            5        7.4        127
## 5732        0.00         0.31           NA           NA                    NA
## 5733        0.01         0.31           79           21        8.8         45
## 5734        0.02         0.31           NA           NA                    NA
## 5735        0.02         0.31           NA           NA                    NA
## 5736        0.03         0.31           32           28        3.6        587
## 5737        0.03         0.31           NA           NA                    NA
## 5738        0.05         0.31           79           33        5.2        213
## 5739        0.06         0.31           82           40        8.6         31
## 5740        0.03         0.31           62           35        7.2         26
## 5741        0.02         0.31           NA           NA                    NA
## 5742        0.02         0.31           NA           NA                    NA
## 5743        0.00         0.31           NA           NA                    NA
## 5744        0.02         0.31           NA           NA                    NA
## 5745        0.04         0.31           66           45          7         45
## 5746        0.00         0.31           NA           NA                    NA
## 5747        0.04         0.31           76           17        7.1        110
## 5748        0.02         0.31           26            7        3.8          8
## 5749        0.01         0.31           85           41        8.6         25
## 5750        0.03         0.31           65            5        3.6          7
## 5751        0.01         0.31           NA           NA                    NA
## 5752        0.02         0.31           NA           NA                    NA
## 5753        0.04         0.31           NA           NA                    NA
## 5754        0.05         0.31           81           51        3.3         29
## 5755        0.03         0.31           60            5        tbd         NA
## 5756        0.02         0.31           NA           NA                    NA
## 5757        0.03         0.31           59           69          6         61
## 5758        0.02         0.31           NA           NA                    NA
## 5759        0.10         0.31           NA           NA                    NA
## 5760        0.00         0.31           NA           NA                    NA
## 5761        0.00         0.31           NA           NA                    NA
## 5762        0.00         0.31           NA           NA                    NA
## 5763        0.05         0.31           NA           NA                    NA
## 5764        0.05         0.31           NA           NA                    NA
## 5765        0.02         0.31           NA           NA        0.3          9
## 5766        0.09         0.31           69           15        8.1         38
## 5767        0.03         0.31           79           34        8.3         44
## 5768        0.00         0.31           NA           NA                    NA
## 5769        0.02         0.31           NA           NA        tbd         NA
## 5770        0.01         0.31           81           24        6.8         15
## 5771        0.05         0.31           41           28        1.7         17
## 5772        0.01         0.31           81           15          9         21
## 5773        0.03         0.31           67           23        5.6          8
## 5774        0.02         0.31           73           48          8         99
## 5775        0.00         0.31           NA           NA                    NA
## 5776        0.04         0.31           NA           NA                    NA
## 5777        0.02         0.31           NA           NA                    NA
## 5778        0.04         0.31           NA           NA        tbd         NA
## 5779        0.03         0.31           58           13        2.1         35
## 5780        0.02         0.31           71           36        7.4          8
## 5781        0.00         0.31           NA           NA                    NA
## 5782        0.02         0.31           NA           NA        tbd         NA
## 5783        0.03         0.31           73           14          6          8
## 5784        0.02         0.31           NA           NA                    NA
## 5785        0.01         0.31           74           38        7.4          7
## 5786        0.02         0.31           NA           NA                    NA
## 5787        0.02         0.31           46           21        tbd         NA
## 5788        0.01         0.31           85           12        6.6          5
## 5789        0.00         0.31           NA           NA                    NA
## 5790        0.01         0.31           NA           NA                    NA
## 5791        0.02         0.31           78           15        8.9         39
## 5792        0.03         0.31           NA           NA                    NA
## 5793        0.02         0.31           NA           NA                    NA
## 5794        0.03         0.31           82           33        6.9         77
## 5795        0.04         0.31           73           34        8.5         11
## 5796        0.02         0.31           NA           NA                    NA
## 5797        0.04         0.31           52           14        6.5          8
## 5798        0.02         0.31           NA           NA                    NA
## 5799        0.02         0.31           NA           NA        7.8          4
## 5800        0.04         0.31           NA           NA        tbd         NA
## 5801        0.00         0.31           NA           NA                    NA
## 5802        0.00         0.31           NA           NA                    NA
## 5803        0.02         0.31           NA           NA                    NA
## 5804        0.00         0.31           NA           NA                    NA
## 5805        0.02         0.31           NA           NA                    NA
## 5806        0.04         0.31           49           21        6.1         14
## 5807        0.02         0.31           26            6        tbd         NA
## 5808        0.02         0.31           NA           NA                    NA
## 5809        0.02         0.31           58           51          6         41
## 5810        0.02         0.31           NA           NA                    NA
## 5811        0.02         0.31           NA           NA        tbd         NA
## 5812        0.01         0.31           32           24        2.4         10
## 5813        0.02         0.31           NA           NA                    NA
## 5814        0.01         0.31           NA           NA                    NA
## 5815        0.02         0.31           66            8        7.2          6
## 5816        0.04         0.31           54           32        5.3        103
## 5817        0.05         0.31           NA           NA                    NA
## 5818        0.04         0.31           59           17        7.8          4
## 5819        0.00         0.31           NA           NA                    NA
## 5820        0.00         0.31           NA           NA                    NA
## 5821        0.04         0.31           54           15        5.8          8
## 5822        0.02         0.31           73           11        6.2          5
## 5823        0.02         0.30           73           22        7.8         19
## 5824        0.01         0.30           62            4        7.3         12
## 5825        0.01         0.30           76           41        8.3         30
## 5826        0.01         0.30           27            5        8.9         19
## 5827        0.00         0.30           NA           NA                    NA
## 5828        0.02         0.30           83           38        8.4         45
## 5829        0.00         0.30           NA           NA                    NA
## 5830        0.02         0.30           NA           NA                    NA
## 5831        0.00         0.30           NA           NA                    NA
## 5832        0.01         0.30           72           13        7.5         15
## 5833        0.04         0.30           66           18        4.5          4
## 5834        0.02         0.30           NA           NA                    NA
## 5835        0.02         0.30           62           24        4.1         14
## 5836        0.03         0.30           83           16        8.3         64
## 5837        0.00         0.30           NA           NA                    NA
## 5838        0.00         0.30           NA           NA                    NA
## 5839        0.03         0.30           81           25        6.6       1097
## 5840        0.02         0.30           NA           NA                    NA
## 5841        0.02         0.30           68           37        6.8         16
## 5842        0.04         0.30           78           25        tbd         NA
## 5843        0.01         0.30           78           18        7.9         18
## 5844        0.01         0.30           59            6        tbd         NA
## 5845        0.04         0.30           65           34        8.2         58
## 5846        0.00         0.30           NA           NA                    NA
## 5847        0.01         0.30           36            5        3.8          6
## 5848        0.04         0.30           61           18        8.5         30
## 5849        0.00         0.30           NA           NA                    NA
## 5850        0.03         0.30           81           11        8.5         51
## 5851        0.01         0.30           NA           NA                    NA
## 5852        0.00         0.30           NA           NA                    NA
## 5853        0.02         0.30           NA           NA                    NA
## 5854        0.03         0.30           NA           NA                    NA
## 5855        0.06         0.30           75           59        7.3         89
## 5856        0.07         0.30           NA           NA                    NA
## 5857        0.04         0.30           62           53        8.2         40
## 5858        0.02         0.30           53            5        tbd         NA
## 5859        0.00         0.30           NA           NA                    NA
## 5860        0.02         0.30           NA           NA                    NA
## 5861        0.03         0.30           77           26        8.2         76
## 5862        0.03         0.30           NA           NA        6.6         26
## 5863        0.00         0.30           NA           NA                    NA
## 5864        0.07         0.30           NA           NA        7.7         12
## 5865        0.00         0.30           NA           NA                    NA
## 5866        0.02         0.30           53           32        5.5         26
## 5867        0.02         0.30           69           49          7         57
## 5868        0.02         0.30           66           16        tbd         NA
## 5869        0.03         0.30           NA           NA                    NA
## 5870        0.01         0.30           77           14        8.9         17
## 5871        0.00         0.30           NA           NA                    NA
## 5872        0.00         0.30           NA           NA                    NA
## 5873        0.04         0.30           NA           NA        tbd         NA
## 5874        0.02         0.30           79           29        6.6         33
## 5875        0.02         0.30           NA           NA                    NA
## 5876        0.00         0.30           NA           NA                    NA
## 5877        0.00         0.30           NA           NA                    NA
## 5878        0.01         0.30           48           14        5.9          8
## 5879        0.00         0.30           NA           NA                    NA
## 5880        0.02         0.30           63            4        5.8          5
## 5881        0.03         0.30           61           13        7.5         10
## 5882        0.02         0.30           45            4        tbd         NA
## 5883        0.02         0.30           NA           NA                    NA
## 5884        0.04         0.30           90           16        8.2         42
## 5885        0.01         0.30           NA           NA                    NA
## 5886        0.00         0.30           NA           NA                    NA
## 5887        0.00         0.30           46           20        7.3         14
## 5888        0.02         0.30           63            6        7.3         38
## 5889        0.02         0.30           74            8        5.3          4
## 5890        0.01         0.30           82           11        8.2          5
## 5891        0.03         0.30           77           22        7.9         48
## 5892        0.04         0.30           73           19        8.6          7
## 5893        0.03         0.30           62           13        5.3          9
## 5894        0.00         0.30           NA           NA                    NA
## 5895        0.04         0.30           NA           NA                    NA
## 5896        0.02         0.30           76           11        8.9         41
## 5897        0.02         0.30           60           42        7.4         22
## 5898        0.07         0.30           73           28        7.5         43
## 5899        0.00         0.30           NA           NA                    NA
## 5900        0.00         0.30           NA           NA                    NA
## 5901        0.02         0.30           NA           NA                    NA
## 5902        0.02         0.30           65            6        7.7          7
## 5903        0.04         0.30           55           24        6.1          7
## 5904        0.00         0.30           67           28        7.6        131
## 5905        0.02         0.30           NA           NA        tbd         NA
## 5906        0.00         0.30           NA           NA                    NA
## 5907        0.04         0.30           74           24          8         13
## 5908        0.00         0.30           NA           NA                    NA
## 5909        0.27         0.30           68           27          8         25
## 5910        0.02         0.30           NA           NA                    NA
## 5911        0.01         0.30           NA           NA                    NA
## 5912        0.00         0.30           NA           NA                    NA
## 5913        0.01         0.30           NA           NA        tbd         NA
## 5914        0.01         0.30           46            5        tbd         NA
## 5915        0.03         0.30           NA           NA                    NA
## 5916        0.02         0.30           NA           NA                    NA
## 5917        0.03         0.30           64            9        tbd         NA
## 5918        0.00         0.30           NA           NA                    NA
## 5919        0.00         0.30           49           19          7         19
## 5920        0.01         0.30           69           23        tbd         NA
## 5921        0.04         0.30           77           30        9.5          4
## 5922        0.02         0.30           NA           NA        tbd         NA
## 5923        0.03         0.30           NA           NA        tbd         NA
## 5924        0.01         0.30           56           22        8.4          9
## 5925        0.02         0.30           72           37          7          5
## 5926        0.04         0.30           79           30        8.3         38
## 5927        0.02         0.30           76           11          7         18
## 5928        0.04         0.30           57           62        5.5         53
## 5929        0.05         0.30           52            7        7.4          9
## 5930        0.01         0.30           48            6        4.4          8
## 5931        0.02         0.30           NA           NA                    NA
## 5932        0.01         0.30           NA           NA                    NA
## 5933        0.02         0.30           70           16        6.5          4
## 5934        0.01         0.29           85           30          9         81
## 5935        0.05         0.29           70           52        7.3         57
## 5936        0.00         0.29           NA           NA                    NA
## 5937        0.02         0.29           NA           NA        tbd         NA
## 5938        0.02         0.29           68           38        6.8         20
## 5939        0.04         0.29           71           19        8.6         31
## 5940        0.02         0.29           72           33        8.7         30
## 5941        0.02         0.29           60           51        6.3         26
## 5942        0.03         0.29           57           34        5.8         17
## 5943        0.04         0.29           NA           NA        tbd         NA
## 5944        0.02         0.29           74           14          8          8
## 5945        0.04         0.29           90           61        8.8        676
## 5946        0.02         0.29           NA           NA        tbd         NA
## 5947        0.01         0.29           77            9        8.2         25
## 5948        0.02         0.29           74           36        5.4          9
## 5949        0.01         0.29           NA           NA                    NA
## 5950        0.00         0.29           NA           NA                    NA
## 5951        0.01         0.29           72           23        6.9          9
## 5952        0.02         0.29           NA           NA                    NA
## 5953        0.03         0.29           67            9        5.2          5
## 5954        0.03         0.29           73           44        8.4         38
## 5955        0.01         0.29           67           16        tbd         NA
## 5956        0.02         0.29           NA           NA                    NA
## 5957        0.07         0.29           NA           NA        5.6         14
## 5958        0.00         0.29           NA           NA                    NA
## 5959        0.15         0.29           NA           NA          7          4
## 5960        0.01         0.29           88           36        8.4         16
## 5961        0.02         0.29           59            6        tbd         NA
## 5962        0.04         0.29           66           11        7.7         20
## 5963        0.02         0.29           NA           NA                    NA
## 5964        0.03         0.29           87           58          9        118
## 5965        0.02         0.29           NA           NA                    NA
## 5966        0.08         0.29           NA           NA          9          4
## 5967        0.01         0.29           69           23        7.3         18
## 5968        0.03         0.29           NA           NA                    NA
## 5969        0.03         0.29           61           18        6.8          6
## 5970        0.04         0.29           62           51        6.4         69
## 5971        0.02         0.29           64           35        5.6         16
## 5972        0.03         0.29           60            9        7.6          5
## 5973        0.00         0.29           NA           NA                    NA
## 5974        0.04         0.29           82           19        8.5        525
## 5975        0.02         0.29           NA           NA                    NA
## 5976        0.02         0.29           NA           NA                    NA
## 5977        0.03         0.29           NA           NA                    NA
## 5978        0.03         0.29           58           42          6         30
## 5979        0.04         0.29           80           48        7.7         93
## 5980        0.02         0.29           87           50        8.8         86
## 5981        0.04         0.29           NA           NA                    NA
## 5982        0.00         0.29           NA           NA                    NA
## 5983        0.03         0.29           64           27        7.3         15
## 5984        0.01         0.29           NA           NA                    NA
## 5985        0.02         0.29           NA           NA        tbd         NA
## 5986        0.00         0.29           NA           NA                    NA
## 5987        0.02         0.29           67           60        8.3        126
## 5988        0.02         0.29           60           17        5.4          7
## 5989        0.01         0.29           72           43        8.1         16
## 5990        0.05         0.29           60           11        5.7         68
## 5991        0.04         0.29           72            7        6.6          8
## 5992        0.01         0.29           NA           NA                    NA
## 5993        0.02         0.29           NA           NA        tbd         NA
## 5994        0.04         0.29           61           56        7.1         25
## 5995        0.04         0.29           68           23        8.5         63
## 5996        0.03         0.29           82           67        8.2         73
## 5997        0.04         0.29           58            5        7.3          8
## 5998        0.00         0.29           NA           NA                    NA
## 5999        0.03         0.29           NA           NA        tbd         NA
## 6000        0.06         0.29           74           28        8.2         21
## 6001        0.00         0.29           NA           NA                    NA
## 6002        0.00         0.29           NA           NA                    NA
## 6003        0.00         0.29           NA           NA                    NA
## 6004        0.00         0.29           NA           NA                    NA
## 6005        0.00         0.29           NA           NA                    NA
## 6006        0.00         0.29           NA           NA                    NA
## 6007        0.00         0.29           NA           NA                    NA
## 6008        0.00         0.29           NA           NA                    NA
## 6009        0.00         0.29           NA           NA                    NA
## 6010        0.03         0.29           NA           NA                    NA
## 6011        0.01         0.29           69           19          8          5
## 6012        0.04         0.29           NA           NA        tbd         NA
## 6013        0.02         0.29           43            7        tbd         NA
## 6014        0.02         0.29           69           14        8.8         17
## 6015        0.02         0.29           NA           NA        6.8         48
## 6016        0.04         0.29           76           31        8.4         15
## 6017        0.02         0.29           70           30        7.7         21
## 6018        0.01         0.29           74           25        7.8         19
## 6019        0.01         0.29           70           51        8.1         42
## 6020        0.02         0.29           84           30        8.2         43
## 6021        0.01         0.29           NA           NA          7          4
## 6022        0.00         0.29           NA           NA                    NA
## 6023        0.03         0.29           NA           NA                    NA
## 6024        0.02         0.29           75           55        6.2        703
## 6025        0.01         0.29           76            6          6          4
## 6026        0.02         0.29           NA           NA                    NA
## 6027        0.02         0.29           77           43          8         20
## 6028        0.03         0.29           77           71        7.8        188
## 6029        0.01         0.29           65           30        7.4         27
## 6030        0.03         0.29           68            4        3.7         16
## 6031        0.03         0.29           71           30        7.2         12
## 6032        0.01         0.29           NA           NA                    NA
## 6033        0.02         0.29           NA           NA                    NA
## 6034        0.02         0.29           68            5        8.5          6
## 6035        0.03         0.29           NA           NA        tbd         NA
## 6036        0.02         0.29           43           44        6.8         87
## 6037        0.00         0.29           NA           NA                    NA
## 6038        0.02         0.29           NA           NA        tbd         NA
## 6039        0.03         0.29           47           21        6.3        160
## 6040        0.04         0.29           30            4        5.1         17
## 6041        0.02         0.29           83           12        8.4         45
## 6042        0.01         0.29           NA           NA        tbd         NA
## 6043        0.00         0.29           NA           NA                    NA
## 6044        0.02         0.29           81           15        7.3         26
## 6045        0.02         0.29           79           14        8.1         31
## 6046        0.05         0.29           45           42        5.5         74
## 6047        0.02         0.29           NA           NA                    NA
## 6048        0.02         0.29           NA           NA        tbd         NA
## 6049        0.05         0.29           49            6        3.6         23
## 6050        0.02         0.29           76           13        5.4        348
## 6051        0.03         0.29           84           36        8.7        268
## 6052        0.03         0.29           NA           NA                    NA
## 6053        0.02         0.29           71           17        6.2          5
## 6054        0.00         0.29           NA           NA                    NA
## 6055        0.02         0.29           NA           NA                    NA
## 6056        0.04         0.29           60            4        tbd         NA
## 6057        0.02         0.29           71           11        tbd         NA
## 6058        0.04         0.29           80           43        8.1        173
## 6059        0.00         0.29           NA           NA                    NA
## 6060        0.02         0.29           NA           NA                    NA
## 6061        0.01         0.29           65           18        8.8         13
## 6062        0.04         0.29           76           21        8.6         38
## 6063        0.00         0.29           NA           NA                    NA
## 6064        0.01         0.29           56           14        7.5          4
## 6065        0.02         0.29           75           55        8.1         18
## 6066        0.04         0.29           84           46        8.9         27
## 6067        0.02         0.29           NA           NA                    NA
## 6068        0.00         0.29           NA           NA                    NA
## 6069        0.02         0.29           70           12        tbd         NA
## 6070        0.02         0.29           NA           NA                    NA
## 6071        0.00         0.29           NA           NA                    NA
## 6072        0.00         0.29           NA           NA                    NA
## 6073        0.02         0.29           NA           NA                    NA
## 6074        0.02         0.29           61           30        6.5         35
## 6075        0.02         0.29           NA           NA        tbd         NA
## 6076        0.01         0.29           62           13        8.3         10
## 6077        0.02         0.29           59           29        5.2         30
## 6078        0.00         0.29           NA           NA                    NA
## 6079        0.05         0.29           80           38        3.7       1466
## 6080        0.01         0.29           80           41          9          9
## 6081        0.02         0.29           NA           NA                    NA
## 6082        0.05         0.29           72           49        7.9         35
## 6083        0.03         0.29           86            5        7.7        207
## 6084        0.01         0.29           72           10        5.7          6
## 6085        0.01         0.29           76           29        8.1         24
## 6086        0.02         0.28           50            4        tbd         NA
## 6087        0.00         0.28           NA           NA                    NA
## 6088        0.04         0.28           48            9        8.3         13
## 6089        0.04         0.28           75           13        tbd         NA
## 6090        0.02         0.28           NA           NA                    NA
## 6091        0.00         0.28           NA           NA        7.9          9
## 6092        0.00         0.28           NA           NA                    NA
## 6093        0.01         0.28           70            6        tbd         NA
## 6094        0.01         0.28           69           12        8.2         26
## 6095        0.00         0.28           NA           NA                    NA
## 6096        0.03         0.28           NA           NA        4.1         65
## 6097        0.00         0.28           NA           NA                    NA
## 6098        0.02         0.28           NA           NA                    NA
## 6099        0.02         0.28           82            9        4.2        383
## 6100        0.01         0.28           85           55        8.2         21
## 6101        0.02         0.28           73           24        8.8         55
## 6102        0.02         0.28           72           37        8.5         40
## 6103        0.04         0.28           69           26        6.9         15
## 6104        0.01         0.28           58           22          8          4
## 6105        0.01         0.28           NA           NA                    NA
## 6106        0.01         0.28           61           10        tbd         NA
## 6107        0.04         0.28           66           35        6.2          5
## 6108        0.00         0.28           NA           NA                    NA
## 6109        0.04         0.28           NA           NA                    NA
## 6110        0.05         0.28           40           17        4.8         16
## 6111        0.01         0.28           70           18          9          4
## 6112        0.00         0.28           NA           NA                    NA
## 6113        0.02         0.28           73           10        8.4        108
## 6114        0.01         0.28           NA           NA                    NA
## 6115        0.04         0.28           NA           NA                    NA
## 6116        0.01         0.28           58           34        7.5         20
## 6117        0.00         0.28           NA           NA                    NA
## 6118        0.01         0.28           NA           NA                    NA
## 6119        0.01         0.28           92           25        8.4        190
## 6120        0.06         0.28           54            8        5.6         35
## 6121        0.00         0.28           NA           NA                    NA
## 6122        0.02         0.28           NA           NA        tbd         NA
## 6123        0.04         0.28           90           34        8.5         35
## 6124        0.00         0.28           NA           NA                    NA
## 6125        0.02         0.28           76           29        8.4         47
## 6126        0.02         0.28           NA           NA        tbd         NA
## 6127        0.02         0.28           61           70        4.8         80
## 6128        0.02         0.28           NA           NA        tbd         NA
## 6129        0.02         0.28           NA           NA                    NA
## 6130        0.03         0.28           NA           NA        tbd         NA
## 6131        0.02         0.28           58           23        7.9         28
## 6132        0.03         0.28           59           39        7.4         50
## 6133        0.02         0.28           71           60          7         72
## 6134        0.04         0.28           56           14        7.6         21
## 6135        0.01         0.28           85           54        8.2         21
## 6136        0.01         0.28           68           41        8.5         27
## 6137        0.00         0.28           NA           NA                    NA
## 6138        0.02         0.28           NA           NA        7.5          4
## 6139        0.02         0.28           57           28        6.7          7
## 6140        0.01         0.28           NA           NA                    NA
## 6141        0.00         0.28           NA           NA                    NA
## 6142        0.00         0.28           NA           NA                    NA
## 6143        0.00         0.28           NA           NA                    NA
## 6144        0.04         0.28           58           24        6.6         14
## 6145        0.00         0.28           NA           NA                    NA
## 6146        0.02         0.28           52           34          8         17
## 6147        0.00         0.28           NA           NA                    NA
## 6148        0.14         0.28           NA           NA        tbd         NA
## 6149        0.01         0.28           NA           NA                    NA
## 6150        0.05         0.28           75            4        tbd         NA
## 6151        0.03         0.28           69           64        6.1         29
## 6152        0.03         0.28           59           53        6.7         30
## 6153        0.04         0.28           NA           NA                    NA
## 6154        0.02         0.28           56            5          7          4
## 6155        0.03         0.28           69           20        7.3         22
## 6156        0.04         0.28           70           24        7.8         12
## 6157        0.01         0.28           NA           NA                    NA
## 6158        0.04         0.28           64           30        7.8         10
## 6159        0.02         0.28           NA           NA                    NA
## 6160        0.02         0.28           82           12        7.2         10
## 6161        0.02         0.28           NA           NA                    NA
## 6162        0.01         0.28           58           10        tbd         NA
## 6163        0.03         0.28           69           41        6.9         74
## 6164        0.00         0.28           NA           NA                    NA
## 6165        0.02         0.28           NA           NA        tbd         NA
## 6166        0.02         0.28           NA           NA                    NA
## 6167        0.02         0.28           76           37        8.3         32
## 6168        0.04         0.28           46           23        4.7         10
## 6169        0.01         0.28           68            6        tbd         NA
## 6170        0.03         0.28           50           12        5.2          6
## 6171        0.02         0.28           84           10        8.6         18
## 6172        0.05         0.28           60           44        5.9         27
## 6173        0.04         0.28           71           26        7.5         22
## 6174        0.05         0.28           NA           NA                    NA
## 6175        0.04         0.28           76           22        8.9         15
## 6176        0.01         0.28           NA           NA                    NA
## 6177        0.03         0.28           78           46        7.5         40
## 6178        0.04         0.28           56            5        6.7          6
## 6179        0.02         0.28           NA           NA        tbd         NA
## 6180        0.02         0.28           NA           NA                    NA
## 6181        0.01         0.28           80           18        7.8          4
## 6182        0.01         0.28           71           17        tbd         NA
## 6183        0.02         0.28           NA           NA                    NA
## 6184        0.02         0.28           NA           NA        8.2        113
## 6185        0.02         0.28           NA           NA                    NA
## 6186        0.01         0.28           NA           NA        tbd         NA
## 6187        0.01         0.28           70           21        7.5          6
## 6188        0.03         0.28           NA           NA        tbd         NA
## 6189        0.02         0.28           NA           NA        tbd         NA
## 6190        0.00         0.28           NA           NA                    NA
## 6191        0.01         0.28           65            8        tbd         NA
## 6192        0.01         0.28           84           23        8.3         39
## 6193        0.05         0.28           NA           NA        6.4         18
## 6194        0.02         0.28           71           34        7.1        133
## 6195        0.02         0.28           NA           NA        3.4          5
## 6196        0.04         0.28           NA           NA                    NA
## 6197        0.04         0.28           57           11        5.8          4
## 6198        0.04         0.28           82           19        8.4         11
## 6199        0.03         0.28           70           65        7.3         87
## 6200        0.02         0.28           66           18        6.6         16
## 6201        0.01         0.28           54           10        6.3          6
## 6202        0.05         0.28           66           13        7.1          7
## 6203        0.04         0.28           61           41        6.5         17
## 6204        0.01         0.28           NA           NA                    NA
## 6205        0.02         0.28           NA           NA                    NA
## 6206        0.04         0.28           54           15        tbd         NA
## 6207        0.01         0.28           65           23        4.9         11
## 6208        0.02         0.28           NA           NA        tbd         NA
## 6209        0.00         0.28           NA           NA                    NA
## 6210        0.03         0.28           NA           NA                    NA
## 6211        0.04         0.28           55           14        3.9         13
## 6212        0.03         0.28           NA           NA        tbd         NA
## 6213        0.02         0.28           NA           NA                    NA
## 6214        0.00         0.28           NA           NA                    NA
## 6215        0.01         0.28           71           28        tbd         NA
## 6216        0.02         0.28           NA           NA        tbd         NA
## 6217        0.02         0.28           89           36        7.6         62
## 6218        0.16         0.28           55            4        7.5         13
## 6219        0.02         0.28           59            3        5.6         25
## 6220        0.00         0.28           NA           NA                    NA
## 6221        0.00         0.28           NA           NA                    NA
## 6222        0.04         0.28           NA           NA        8.5         17
## 6223        0.00         0.28           NA           NA                    NA
## 6224        0.01         0.28           NA           NA                    NA
## 6225        0.02         0.28           NA           NA                    NA
## 6226        0.01         0.28           78           15        7.7         10
## 6227        0.04         0.28           71           28        7.3         46
## 6228        0.02         0.28           NA           NA        tbd         NA
## 6229        0.02         0.28           NA           NA                    NA
## 6230        0.04         0.28           NA           NA        tbd         NA
## 6231        0.01         0.28           60           43        7.8         17
## 6232        0.04         0.28           65           21        7.7         19
## 6233        0.04         0.28           55            4        tbd         NA
## 6234        0.02         0.28           56           15        5.8          8
## 6235        0.01         0.28           NA           NA                    NA
## 6236        0.00         0.28           91           29        9.1        127
## 6237        0.04         0.28           57            9          7          4
## 6238        0.01         0.28           80           26        8.7         69
## 6239        0.00         0.28           NA           NA                    NA
## 6240        0.02         0.28           NA           NA                    NA
## 6241        0.05         0.28           58           27        6.7        100
## 6242        0.00         0.28           NA           NA                    NA
## 6243        0.00         0.28           NA           NA                    NA
## 6244        0.00         0.28           NA           NA                    NA
## 6245        0.02         0.28           NA           NA                    NA
## 6246        0.02         0.27           74           41        7.2         35
## 6247        0.03         0.27           75           12        8.3          6
## 6248        0.00         0.27           NA           NA                    NA
## 6249        0.04         0.27           NA           NA        tbd         NA
##                                                         Developer Rating
## 1                                                        Nintendo      E
## 2                                                                       
## 3                                                        Nintendo      E
## 4                                                        Nintendo      E
## 5                                                                       
## 6                                                                       
## 7                                                        Nintendo      E
## 8                                                        Nintendo      E
## 9                                                        Nintendo      E
## 10                                                                      
## 11                                                                      
## 12                                                       Nintendo      E
## 13                                                                      
## 14                                                       Nintendo      E
## 15                                            Good Science Studio      E
## 16                                                       Nintendo      E
## 17                                                 Rockstar North      M
## 18                                                 Rockstar North      M
## 19                                                                      
## 20                                                       Nintendo      E
## 21                                                                      
## 22                                                                      
## 23                                                                      
## 24                                                 Rockstar North      M
## 25                                                 Rockstar North      M
## 26                                                                      
## 27                                                       Nintendo      E
## 28                                                                      
## 29                                              Polyphony Digital      E
## 30                              Infinity Ward, Sledgehammer Games      M
## 31                                                                      
## 32                                                                      
## 33                                                       Treyarch      M
## 34                                                                      
## 35                                                       Treyarch      M
## 36                                                       Treyarch      M
## 37                                                  Infinity Ward      M
## 38                              Infinity Ward, Sledgehammer Games      M
## 39                                                     DMA Design      M
## 40                                                      Game Arts      T
## 41   Retro Studios, Entertainment Analysis & Development Division      E
## 42                                                       Treyarch      M
## 43                                                 Rockstar North      M
## 44                                                       Nintendo      E
## 45                                        Bungie Software, Bungie      M
## 46                                                                      
## 47                                                                      
## 48                                                                      
## 49                                              Polyphony Digital      E
## 50                                                       Nintendo      E
## 51                                                                      
## 52                                                 Rockstar North      M
## 53                                              Polyphony Digital      E
## 54                                                       Nintendo      E
## 55                                              Polyphony Digital      E
## 56                                                  Infinity Ward      M
## 57                                                                      
## 58                                                 Rockstar North      M
## 59                                                                      
## 60                                                                      
## 61                                                  Infinity Ward      M
## 62                                                        Ubisoft   E10+
## 63                                                       Nintendo      E
## 64                                                                      
## 65                                                         Bungie      M
## 66                                                     SquareSoft      T
## 67                                                 343 Industries      M
## 68                                              Polyphony Digital      T
## 69                                                        Ubisoft   E10+
## 70                                                  Infinity Ward      M
## 71                                                  Infinity Ward      M
## 72                                                                      
## 73                                                                      
## 74                                                       Nintendo      E
## 75                                                    Hudson Soft      E
## 76                                          Bethesda Game Studios      M
## 77                                                                      
## 78                                                      EA Sports      E
## 79                                                Bungie Software      M
## 80                                                        Nd Cube      E
## 81                                                         Hudson      E
## 82                                                Electronic Arts      E
## 83                                                                      
## 84                                                                      
## 85                                                     SquareSoft      T
## 86                                                The Sims Studio      T
## 87                                                                      
## 88                                                                      
## 89                                                     SquareSoft      T
## 90                                                                      
## 91                                                     Game Freak      E
## 92                                                 Rockstar Leeds      M
## 93                                             Sledgehammer Games      M
## 94                                                                      
## 95                                        EA Sports, EA Vancouver      E
## 96                                                                      
## 97                                                                      
## 98                                             Nintendo EAD Tokyo      E
## 99                                                                      
## 100                                                                     
## 101                                                      Treyarch      M
## 102                                                       EA DICE      M
## 103                                                  EA Black Box      E
## 104                                                 Ubisoft Paris   E10+
## 105                                                       EA DICE      M
## 106                                         Bethesda Game Studios      M
## 107                                                         Namco      T
## 108                                                      Nintendo      T
## 109                                                                     
## 110                                                   Naughty Dog      E
## 111                                                      Nintendo      E
## 112                                                      HAL Labs      T
## 113                                                                     
## 114                                                     EA Canada      E
## 115                                                         EA LA      T
## 116                                                                     
## 117                                                       Ubisoft   E10+
## 118                                                    Epic Games      M
## 119                                                   Naughty Dog      T
## 120                                      Pipeworks Software, Inc.      E
## 121                                                 Infinity Ward      M
## 122                                                   Naughty Dog      T
## 123                                                                     
## 124                                                      Nintendo      E
## 125                                                                     
## 126                                            Rockstar San Diego      M
## 127                                                     EA Canada      E
## 128                                                       Ubisoft      M
## 129                                                 Retro Studios      E
## 130                                               Bungie Software      M
## 131                                         Bethesda Game Studios      M
## 132                                                    Game Freak      E
## 133                                                    SquareSoft      E
## 134                                                                     
## 135                                       Bungie Software, Bungie      M
## 136                                            Rockstar San Diego      M
## 137                                                      Nintendo      E
## 138                                                                     
## 139                                        Blizzard Entertainment      T
## 140                                       Reflections Interactive      T
## 141                                                    Epic Games      M
## 142                                                     Rare Ltd.   E10+
## 143                                                    Epic Games      M
## 144                                                     EA Sports      E
## 145                                                          KCEJ      M
## 146                                                                     
## 147                                                          KCEJ      M
## 148                                            Kojima Productions      M
## 149                                                   Square Enix      T
## 150                                                   Naughty Dog      M
## 151                                       SCE/WWS, Media Molecule      E
## 152                                                        Capcom      M
## 153                                                       Level 5   E10+
## 154                                                         Namco      T
## 155                                       Bungie Software, Bungie      T
## 156                                             Traveller's Tales   E10+
## 157                                             Taito Corporation      E
## 158                                                                     
## 159                                                                     
## 160                                              Ubisoft Montreal      M
## 161                                              Ubisoft Montreal      M
## 162                                                       Turn 10      E
## 163                                                      Nintendo      E
## 164                                                        Capcom      T
## 165                                            Rocksteady Studios      T
## 166                                                Rockstar North      M
## 167                                           Intelligent Systems      E
## 168                                                                     
## 169                                                                     
## 170                                             Traveller's Tales      E
## 171                                                      Treyarch      M
## 172                                                   Naughty Dog      T
## 173                                                                     
## 174                                                   Square Enix      T
## 175                                                                     
## 176                                                    SquareSoft      T
## 177                                                       Ubisoft      M
## 178                                                    SquareSoft      T
## 179                                                                     
## 180                                            Sledgehammer Games      M
## 181                                                                     
## 182                                              Ubisoft Montreal      M
## 183                                              Core Design Ltd.      T
## 184                                                    EA Tiburon      E
## 185                                                                     
## 186                                                      Nintendo      E
## 187                                                       Level 5      T
## 188                                                                     
## 189                                                       Level 5      E
## 190                                                                     
## 191                                               Electronic Arts      E
## 192                                                                     
## 193                                        Blizzard Entertainment      M
## 194                                                         EA LA      T
## 195                                                                     
## 196                                                                     
## 197                                        Harmonix Music Systems      T
## 198                                              Lionhead Studios      M
## 199                                                                     
## 200                                                        Capcom      M
## 201                                                      Nintendo      E
## 202                                                                     
## 203                                                     EA Sports      E
## 204                                                        Capcom      M
## 205                                                Rockstar Leeds      M
## 206                                       Neversoft Entertainment      T
## 207                                                                     
## 208                                                                     
## 209                               Neversoft Entertainment, BudCat      T
## 210                                                      Nintendo      T
## 211                                                                     
## 212                                         Bethesda Game Studios      M
## 213                                          Naughty Dog, SCE/WWS      T
## 214                                                     EA Sports      E
## 215                                                                     
## 216                                                                     
## 217                                                                     
## 218                                                                     
## 219                                        Blizzard Entertainment      T
## 220                                              Ubisoft Montreal      M
## 221                                              SCE Santa Monica      M
## 222                                                   Naughty Dog      E
## 223                                                     TT Fusion      E
## 224                                       Reflections Interactive      T
## 225                                            Rocksteady Studios      T
## 226                                                                     
## 227                                                                     
## 228                                       Neversoft Entertainment      T
## 229                                            Stormfront Studios      T
## 230                                              Core Design Ltd.      T
## 231                                                      Nintendo      E
## 232                                               Bluepoint Games      T
## 233                                                                     
## 234                                                      Nintendo      E
## 235                                             Vicarious Visions      T
## 236                                              Next Level Games      E
## 237                                                       Turn 10      E
## 238                                                                     
## 239                                                    EA Tiburon      E
## 240                                       Neversoft Entertainment      T
## 241                                                                     
## 242                                                     EA Sports      E
## 243                                                343 Industries      T
## 244                                                      Treyarch      E
## 245                                                                     
## 246                                                 Infinity Ward      M
## 247                                              SCE Santa Monica      M
## 248                                                      Nintendo   E10+
## 249                                                      Nintendo   E10+
## 250                                       Neversoft Entertainment      T
## 251                                                        Konami      E
## 252                                            Bethesda Softworks      M
## 253                                                                     
## 254                                                     EA Canada      T
## 255                            Ubisoft Paris, Ubisoft Montpellier   E10+
## 256                                             High Moon Studios      M
## 257                                               Insomniac Games      M
## 258                                                                     
## 259                                                   Square Enix   E10+
## 260                                                                     
## 261                                                      Nintendo      E
## 262                                                                     
## 263                                                                     
## 264                                             High Moon Studios      M
## 265                                                     EA Sports      E
## 266                                              Lionhead Studios      M
## 267                                                    Mass Media      E
## 268                                            Rocksteady Studios      T
## 269                                                          KCEJ      M
## 270                                              Ubisoft Montreal      M
## 271                                         Bethesda Game Studios      M
## 272                                                     EA Canada      E
## 273                                                 Ready at Dawn   E10+
## 274                                                                     
## 275                                                     EA Canada      E
## 276                                                SCEE, Zoe Mode      E
## 277                                             Polyphony Digital      E
## 278                                              Ubisoft Montreal      M
## 279                                                                     
## 280                                                                     
## 281                                                        Capcom      T
## 282                                                                     
## 283                                                                     
## 284                                                     EA Sports      E
## 285                                                Valve Software      M
## 286                                                                     
## 287                                                                     
## 288                                                                     
## 289                                        Blizzard Entertainment      T
## 290                                                       EA DICE      M
## 291                                              SCE Santa Monica      M
## 292                                                        Konami      E
## 293                                        Obsidian Entertainment      M
## 294                                                       Turn 10      E
## 295                                               Cat Daddy Games      E
## 296                                              Ubisoft Montreal      M
## 297                                                                     
## 298                                                         Namco      T
## 299                                              Ubisoft Montreal      M
## 300                                                                     
## 301                                                                     
## 302                                               Digital Eclipse   E10+
## 303                                                Valve Software      M
## 304                                         CD Projekt Red Studio      M
## 305                                     Ubisoft, Ubisoft Montreal      M
## 306                                            Rocksteady Studios      M
## 307                                                      Nintendo   E10+
## 308                                         Bethesda Game Studios      M
## 309                                                       Level 5   E10+
## 310                                                                     
## 311                                                     EA Canada      E
## 312                                       Neversoft Entertainment      T
## 313                                                        Capcom      T
## 314                                         Bethesda Game Studios      M
## 315                                               Visual Concepts   E10+
## 316                                                         Namco      T
## 317                                                                     
## 318                                             Evolution Studios      T
## 319                                                                     
## 320                                                          KCET      E
## 321                                           SCEA, Zindagi Games   E10+
## 322                                                                     
## 323                                                                     
## 324                                                 Infinity Ward      M
## 325                                  Nintendo, Namco Bandai Games      E
## 326                                         Massive Entertainment      M
## 327                                                      Nintendo      E
## 328                                                                     
## 329                                                                     
## 330                                             Traveller's Tales   E10+
## 331                                                         Maxis      T
## 332                                                                     
## 333                                                Argonaut Games      E
## 334                                                                     
## 335                                                                     
## 336                                           Intelligent Systems      E
## 337                                               Insomniac Games      E
## 338                                                       Ubisoft      M
## 339                                                     EA Canada      E
## 340                                                                     
## 341                                                                     
## 342                                       Neversoft Entertainment      T
## 343                                                                     
## 344                                                          TOSE      E
## 345                                                Rockstar Leeds   E10+
## 346                                                                     
## 347                                            Zipper Interactive      M
## 348                                                   Naughty Dog      E
## 349                                                                     
## 350                                                        Konami      E
## 351                                                        Capcom      M
## 352                                             Vicarious Visions      T
## 353                                                     EA Sports      E
## 354                                              Pandemic Studios      T
## 355                                                                     
## 356                                               Fox Interactive      T
## 357                                                      Nintendo      E
## 358                                                       EA DICE      M
## 359                                              Pandemic Studios      T
## 360                                                       Ubisoft   E10+
## 361                                                 Office Create      E
## 362                                                                     
## 363                                                                     
## 364                                                Rockstar Leeds      M
## 365                                                     Team Soho      M
## 366                                                                     
## 367                                             EA Redwood Shores      T
## 368                                                                     
## 369                                                                     
## 370                                                     EA Sports      E
## 371                                                                     
## 372                                              Certain Affinity      M
## 373                                                                     
## 374                                     Ubisoft, Ubisoft Montreal      M
## 375                                                                     
## 376                                                        Capcom      M
## 377                                              Ubisoft Montreal      M
## 378                                                     EA Canada      E
## 379                                                       EA DICE      M
## 380                                            Rocksteady Studios      T
## 381                                                       EA DICE      M
## 382                                                       EA DICE      M
## 383                                                                     
## 384                                             Vicarious Visions   E10+
## 385                                                        Agenda      E
## 386                                                                     
## 387                                              Gearbox Software      M
## 388                                                         Namco      T
## 389                                                                     
## 390                                                    DMA Design      T
## 391                          Kojima Productions, Moby Dick Studio      M
## 392                                                      Treyarch      T
## 393                                                                     
## 394                                                     EA Canada      E
## 395                                                Media Molecule      E
## 396                                Eurocom Entertainment Software      E
## 397                                                Ubisoft Quebec      M
## 398                                             Traveller's Tales   E10+
## 399                                       Bungie Software, Bungie      T
## 400                                                                     
## 401                                                                     
## 402                                              Ubisoft Montreal      M
## 403                                                                     
## 404                                                                     
## 405                                Eurocom Entertainment Software      T
## 406                                                                     
## 407                                                                     
## 408                                            Double Helix Games      T
## 409                                                      Nintendo   E10+
## 410                                              Rockstar Toronto      M
## 411                                                       Ubisoft      M
## 412                                                      EA Games      T
## 413                                                                     
## 414                                  Splash Damage, The Coalition      M
## 415                                                Luxoflux, Inc.      M
## 416                                                       Level 5   E10+
## 417                                                                     
## 418                                                     EA Sports      E
## 419                                                      Nintendo      E
## 420                                                                     
## 421                                                     EA Sports      E
## 422                                             Polyphony Digital      E
## 423                                                343 Industries      M
## 424                                                                     
## 425                                                      Nintendo      E
## 426                                                                     
## 427                                                                     
## 428                                                                     
## 429                                                                     
## 430                                                 Ready at Dawn      M
## 431                                           Shiny Entertainment      T
## 432                                                   Square Enix      T
## 433                                        Harmonix Music Systems      T
## 434                                                    Team Bondi      M
## 435                                                         Namco      E
## 436                                                      Nintendo      E
## 437                                                     EA Canada      E
## 438                                      1st Playable Productions      E
## 439                                       Neversoft Entertainment      E
## 440                                                       Nd Cube      E
## 441                                                     EA Canada      E
## 442                                                                     
## 443                                 Dimps Corporation, Sonic Team      E
## 444                                                                     
## 445                                                      Nintendo      E
## 446                                        Obsidian Entertainment      M
## 447                                                   Indies Zero      E
## 448                                                    4J Studios      M
## 449                                                      Nintendo      E
## 450                                                        Capcom      M
## 451                                                       BioWare      M
## 452                                             Dimps Corporation      T
## 453                                                     EA Sports      E
## 454                                                                     
## 455                                                                     
## 456                                                         Maxis      T
## 457                                             Traveller's Tales   E10+
## 458                                                      Nintendo      E
## 459                                                         Maxis      T
## 460                                              Gearbox Software      M
## 461                                                     TT Fusion   E10+
## 462                                                Luxoflux, Inc.   E10+
## 463                                                       BioWare      M
## 464                                                 Quantic Dream      M
## 465                                                                     
## 466                                                 Volition Inc.      M
## 467                                              Ubisoft Montreal      T
## 468                                                                     
## 469                                                                     
## 470                                                     EA Canada      E
## 471                                                     Guerrilla      M
## 472                                              Ubisoft Montreal      M
## 473                                                Junction Point      E
## 474                                               Visual Concepts      E
## 475                                     Spike, Namco Bandai Games      T
## 476                                                                     
## 477                                                                     
## 478                                                         Maxis      T
## 479                                                          KCET      E
## 480                                                        Capcom      M
## 481                                            LucasArts, BioWare      T
## 482                                          Monolith Productions      M
## 483                                                    Sonic Team      E
## 484                                                Io Interactive      M
## 485                                         Respawn Entertainment      M
## 486                                                       EA DICE      M
## 487                                                                     
## 488                                            Zipper Interactive      M
## 489                                                                     
## 490                                                    Mass Media      E
## 491                                                        Capcom      T
## 492                                                  Sucker Punch      T
## 493                                                      HAL Labs      E
## 494                                                 Infinity Ward      M
## 495                                                     EA Sports      E
## 496                                                                     
## 497                                                       BioWare      M
## 498                                                    Sonic Team      E
## 499                                                          KCET      E
## 500                                                  Sumo Digital   E10+
## 501                                                     Clap Hanz      E
## 502                                                  OfficeCreate      E
## 503                                               Spark Unlimited      T
## 504                                           Intelligent Systems   E10+
## 505                                                                     
## 506                                                       Ubisoft      E
## 507                                                                     
## 508                                                    EA Tiburon      E
## 509                                            Bethesda Softworks      T
## 510                                                       Ubisoft      M
## 511                                                                     
## 512                                                                     
## 513                                                                     
## 514                                           NetherRealm Studios      M
## 515                                                    EA Tiburon      E
## 516                                                                     
## 517                                    Irrational Games, 2K Marin      M
## 518                                                 Retro Studios      T
## 519                                              Ubisoft Montreal      M
## 520                                             Vicarious Visions      E
## 521                                        Majesco Games, Majesco      T
## 522                                                                     
## 523                                         EA DICE, Danger Close      M
## 524                                                                     
## 525                                                  Virtual Toys      E
## 526                                                                     
## 527                                                                     
## 528                                                                     
## 529                                                                     
## 530                                                  Sucker Punch      T
## 531                                                                     
## 532                                                                     
## 533                                                                     
## 534                                                          NuFX      E
## 535                                                   Naughty Dog      T
## 536                                                                     
## 537                                               Criterion Games   E10+
## 538                                                  Toys for Bob   E10+
## 539                                                       EA DICE      M
## 540   Warner Bros. Interactive Entertainment, NetherRealm Studios      M
## 541                                               Edge of Reality      T
## 542                                                     Guerrilla      M
## 543                                                     LucasArts      T
## 544                                                                     
## 545                                                        Artoon      E
## 546                                                 Volition Inc.      M
## 547                                                                     
## 548                                                                     
## 549                                            Namco Bandai Games      T
## 550                                                                     
## 551                                                                     
## 552                                                    Sonic Team      E
## 553                                                     EA Sports      E
## 554                                                        Capcom      E
## 555                                                        Capcom      M
## 556                                                                     
## 557                                                    Team Bondi      M
## 558                                                      Treyarch      T
## 559                                                    EA Tiburon      E
## 560                                             Traveller's Tales   E10+
## 561                                                     Guerrilla      M
## 562                                                    EA Tiburon      E
## 563                                               Criterion Games      T
## 564                                                                     
## 565                                                                     
## 566                                                      Nintendo      E
## 567                                                       Level 5   E10+
## 568                                                      Treyarch      T
## 569                                        Dreamworks Interactive      T
## 570                                                  Big Blue Box      M
## 571                                       Neversoft Entertainment      T
## 572                                       EA Sports, EA Vancouver      E
## 573                                                    DC Studios      E
## 574                                              Ubisoft Shanghai      T
## 575                                                                     
## 576                                          Slightly Mad Studios      E
## 577                                                                     
## 578                                                   Team Fusion      T
## 579                                                   Square Enix      T
## 580                                                 Angel Studios      T
## 581                                                  EA Black Box      T
## 582                                               Visual Concepts      E
## 583                                              Ensemble Studios      T
## 584                                               Visual Concepts      E
## 585                                                                     
## 586                                                     EA Sports      E
## 587                                            Dice, Danger Close      M
## 588                                               Electronic Arts      E
## 589                                                                     
## 590                                               Bluepoint Games      M
## 591                                                     EA Canada      E
## 592                                              Next Level Games   E10+
## 593                                                     EA Canada      E
## 594                                                    syn Sophia      E
## 595                                                        Yuke's      T
## 596                                             Traveller's Tales   E10+
## 597                                                                     
## 598                                                    EA Tiburon      E
## 599                                                        Capcom      T
## 600                                                                     
## 601                                                                     
## 602                                                    Sonic Team      E
## 603                                                                     
## 604                                                                     
## 605                                                    EA Tiburon      E
## 606                                                       BioWare      M
## 607                                          Genius Sonority Inc.      E
## 608                                       SCE/WWS, Media Molecule   E10+
## 609                                                    EA Tiburon      E
## 610                                                                     
## 611                                    Acclaim Studios Cheltenham      T
## 612                                              Headstrong Games      E
## 613                                               Visual Concepts      E
## 614                                                                     
## 615                                                  Toys for Bob   E10+
## 616                                                                     
## 617                                                  CAProduction      E
## 618                                                                     
## 619                                                                     
## 620                                                Raven Software      T
## 621                                                                     
## 622                                                        Midway      M
## 623                                                        Midway      E
## 624                                                 From Software      M
## 625                                                                     
## 626                                                        Hudson      E
## 627                                             Black Rock Studio      E
## 628                                        Harmonix Music Systems      T
## 629                                               Visual Concepts      E
## 630                                                 Volition Inc.      M
## 631                                               Insomniac Games      M
## 632                                               Visual Concepts      E
## 633                                                                     
## 634                                                    SquareSoft      T
## 635                                            Rockstar San Diego      T
## 636                                                                     
## 637                                                         Maxis      T
## 638                                                   Cyan Worlds      E
## 639                                             Traveller's Tales   E10+
## 640                                                                     
## 641                                                 Infinity Ward      M
## 642                                                     EA Sports      E
## 643                                                                     
## 644                                                                     
## 645                                              Ubisoft Montreal      M
## 646                                                           THQ      E
## 647                                                                     
## 648                                                     EA Canada   E10+
## 649                                             Dimps Corporation      T
## 650                                                        Konami      E
## 651                                               Rainbow Studios      E
## 652                                                                     
## 653                                                     Black Box   E10+
## 654                                                343 Industries      M
## 655                                                                     
## 656                                                                     
## 657                                          Bullfrog Productions    K-A
## 658                          Konami Computer Entertainment Hawaii      E
## 659                                                                     
## 660                                                                     
## 661                                        Harmonix Music Systems      T
## 662                                                    EA Tiburon      E
## 663                                                                     
## 664                                                                     
## 665                                                      Techland      M
## 666                                                Valve Software      M
## 667                                            Heavy Iron Studios      T
## 668                                                    EA Tiburon      E
## 669                                       Neversoft Entertainment      T
## 670                                      Pipeworks Software, Inc.      E
## 671                                                    EA Tiburon      E
## 672                                                                     
## 673                                            Rockstar San Diego      T
## 674                                                                     
## 675                                                                     
## 676                                         Frontier Developments   E10+
## 677                                                        Yuke's      T
## 678                                                        GREZZO   E10+
## 679                                             Traveller's Tales   E10+
## 680                                                        Capcom      M
## 681                                               Visual Concepts   E10+
## 682                                            Rare Ltd., BigPark      E
## 683                                                       Ubisoft      E
## 684                                                                     
## 685                                                                     
## 686                                             EA Redwood Shores      T
## 687                                                     EA Canada      E
## 688                                                                     
## 689                                                      ArenaNet      T
## 690                                                                     
## 691                                           Intelligent Systems      E
## 692                                                                     
## 693                                             WB Games Montreal      T
## 694                                              Core Design Ltd.       
## 695                                                                     
## 696                                             Traveller's Tales   E10+
## 697                                                     EA Canada      E
## 698                                                        Konami      E
## 699                                                                     
## 700                                                     EA Canada      E
## 701                                                     TT Fusion   E10+
## 702                                               The Sims Studio      T
## 703                                      HAL Labs, Creatures Inc.      E
## 704                                                                     
## 705                                                      Techland      M
## 706                                                      HAL Labs      E
## 707                                                      Nintendo      E
## 708                                        Backbone Entertainment   E10+
## 709                                              Ubisoft Montreal      M
## 710                                                       EA DICE      M
## 711                                                        Capcom      M
## 712                                                                     
## 713                                           Intelligent Systems      E
## 714                                                    EA Tiburon      E
## 715                                              SCE Santa Monica      M
## 716                                       Neversoft Entertainment      T
## 717                                                    Sonic Team      E
## 718                                                          Sega      E
## 719                                                       Ubisoft      E
## 720                                                         Exakt      T
## 721                                                      Nintendo      E
## 722                                                       Ubisoft      M
## 723                                               Digital Eclipse      E
## 724                                                   Square Enix      T
## 725                                                     EA Sports      E
## 726                                                                     
## 727                                                        Konami   E10+
## 728                                              Gearbox Software      M
## 729                                                       Ubisoft      T
## 730                                                        Capcom      T
## 731                                                      TT Games   E10+
## 732                                                                     
## 733                                                                     
## 734                                              Ubisoft Montreal      M
## 735                                                     LucasArts      T
## 736                                                                     
## 737                                                                     
## 738                                        Harmonix Music Systems      T
## 739                                                       Turn 10      E
## 740                                        Harmonix Music Systems      T
## 741                                                                     
## 742                                                                     
## 743                                               Criterion Games   E10+
## 744                                                     TT Fusion      E
## 745                                                      2K Marin      M
## 746                                                                     
## 747                                                       BioWare      T
## 748                                                                     
## 749                                                                     
## 750                                                     EA Sports      E
## 751                                                        Konami      E
## 752                                                 Volition Inc.      M
## 753                                                                     
## 754                                               Rainbow Studios      E
## 755                                                     EA Sports      E
## 756                                                                     
## 757                                                                     
## 758                                                                     
## 759                                         Massive Entertainment      M
## 760                                                   Square Enix      T
## 761                                                         Maxis      T
## 762                                                      5TH Cell   E10+
## 763                                                    Sonic Team   E10+
## 764                                                                     
## 765                                                      HAL Labs      E
## 766                                                                     
## 767                                                        Beenox   E10+
## 768                                        Blizzard Entertainment      T
## 769                                                Io Interactive      M
## 770                                                                     
## 771                                                                     
## 772                                                                     
## 773                                                                     
## 774                                                                     
## 775                                           Amaze Entertainment      T
## 776                                                          KCET      E
## 777                                                   Square Enix      E
## 778                                                       Ubisoft      E
## 779                                             Bizarre Creations      E
## 780                                                                     
## 781                                               Visual Concepts      E
## 782                                                                     
## 783                                                     Black Box      E
## 784                                                                     
## 785                                                   Omega Force      T
## 786                                               Visual Concepts      E
## 787                                                    SquareSoft      M
## 788                                                      Nintendo      E
## 789                                                                     
## 790                                                                     
## 791                                                Visceral Games      M
## 792                                           NetherRealm Studios      M
## 793                                              Gearbox Software      M
## 794                                                        Capcom      M
## 795                                                                     
## 796                                               Visual Concepts      E
## 797                                                                     
## 798                                                      Techland      M
## 799                                                                     
## 800                                                        Capcom      M
## 801                                        Blizzard Entertainment      T
## 802                                          Blue Planet Software      E
## 803                                               Matrix Software   E10+
## 804                                          Bullfrog Productions      E
## 805                                                        Hudson      E
## 806                                        Harmonix Music Systems      T
## 807                                                                     
## 808                                                                     
## 809                                                Valve Software   E10+
## 810                                                   Square Enix      E
## 811                                                     EA Canada   E10+
## 812                                                                     
## 813                                                      Full Fat      E
## 814                                                        Konami   E10+
## 815                                             Evolution Studios      E
## 816                                                                     
## 817                                                        Yuke's      T
## 818                                            Kojima Productions      T
## 819                                                                     
## 820                                                                     
## 821                                                                     
## 822                                                        Helixe      E
## 823                                                         Namco       
## 824                                                   Square Enix   E10+
## 825                                                                     
## 826                                                         Namco      T
## 827                                                  EA Black Box   E10+
## 828                                                    Sonic Team      E
## 829                                                                     
## 830                                                     EA Sports      E
## 831                                                  EA Vancouver      T
## 832                                                                     
## 833                                                                     
## 834                                            Zipper Interactive      T
## 835                                           Ubisoft Montpellier      T
## 836                                                  EA Black Box   E10+
## 837                                                     Rare Ltd.      E
## 838                                        Harmonix Music Systems      T
## 839                                                                     
## 840                                                                     
## 841                                               Cat Daddy Games      E
## 842                                                     EA Sports      E
## 843                                                 Infinity Ward      T
## 844                            Ubisoft Paris, Ubisoft Montpellier   E10+
## 845                                                      ChunSoft      E
## 846                                                 From Software      M
## 847                                                       Ubisoft   E10+
## 848                                                       EA DICE      M
## 849                                           Intelligent Systems      T
## 850                                                     Black Box      T
## 851                                                       Ubisoft   E10+
## 852                                                       BioWare      M
## 853                                                                     
## 854                                             EA Redwood Shores      M
## 855                                                        Midway      T
## 856                                    Midway Studios - San Diego   E10+
## 857                                                       Acquire      M
## 858                                                                     
## 859                                Eurocom Entertainment Software      E
## 860                                                 h.a.n.d. Inc.   E10+
## 861                                                  EA Black Box      T
## 862                                                                     
## 863                                                Argonaut Games      E
## 864                                                   Ghost Games   E10+
## 865                                               Check Six Games      E
## 866                                                        Capcom      M
## 867                                                                     
## 868                                                     Clap Hanz   E10+
## 869                                                                     
## 870                                                                     
## 871                                                                     
## 872                                  PLAYGROUND, Playground Games      T
## 873                                              Ubisoft Montreal      M
## 874                                             Vicarious Visions      E
## 875                                                        Capcom      M
## 876                                                Rockstar North     AO
## 877                                                                     
## 878                                               Electronic Arts      E
## 879                                                     Aki Corp.      T
## 880                                            Flagship, HAL Labs      E
## 881                                               Criterion Games   E10+
## 882                                                   Jellyvision      E
## 883                                                                     
## 884                                                           Art      E
## 885                                               The Sims Studio      T
## 886                                                     EA Canada      E
## 887                                             Dimps Corporation      T
## 888                                                         Exakt      M
## 889                                                                     
## 890                                                       Ubisoft      M
## 891                                              Irrational Games      M
## 892                                                Raven Software      T
## 893                                                                     
## 894                                                                     
## 895                                                        Midway      T
## 896                                                        Bungie      T
## 897                                                                     
## 898                                                                     
## 899                                                        Bungie      T
## 900                                                 Volition Inc.      M
## 901                                                         Maxis      T
## 902                                             Nintendo, Nd Cube      E
## 903                                               Rainbow Studios      E
## 904                                                    NanaOn-Sha    K-A
## 905                                       Neversoft Entertainment      T
## 906                                          Slightly Mad Studios      E
## 907                                                                     
## 908                                        Blizzard Entertainment      M
## 909                                                  Sumo Digital      E
## 910                                                      Factor 5      T
## 911                                                                     
## 912                                            Namco Bandai Games      E
## 913                                                                     
## 914                                               Electronic Arts      E
## 915                                                    EA Tiburon      E
## 916                                             WB Games Montreal      T
## 917                                                        Midway      E
## 918                                                                     
## 919                                                        Midway      M
## 920                                                                     
## 921                                                                     
## 922                                               Visual Concepts      E
## 923                                                Papaya Studios      E
## 924                                                                     
## 925                                                                     
## 926                                                     Rare Ltd.      T
## 927                                                                     
## 928                                                     EA Sports      E
## 929                                                   Omega Force      T
## 930                                                                     
## 931                                                                     
## 932                                                     EA Sports      E
## 933                                                Luxoflux, Inc.      E
## 934                                                                     
## 935                                                          SCEI      T
## 936                                                                     
## 937                                                 Krome Studios      T
## 938                                               Electronic Arts      E
## 939                                             Avalanche Studios      M
## 940                                                    SquareSoft      T
## 941                                                   Naughty Dog      T
## 942                                           Jupiter Corporation      E
## 943                                                                     
## 944                                              Rockstar Studios      M
## 945                                                                     
## 946                                                      TT Games   E10+
## 947                                                        Altron      E
## 948                                                     EA Sports      E
## 949                                                                     
## 950                                           Ubisoft Montpellier   E10+
## 951                                                                     
## 952                                                                     
## 953                                                      HAL Labs      E
## 954                                                                     
## 955                                                                     
## 956                                             Creative Assembly      E
## 957                                                                     
## 958                                        Blizzard Entertainment      M
## 959                                                  Sucker Punch      T
## 960                                        Blizzard Entertainment      T
## 961                                                                     
## 962                                                    Mass Media      E
## 963                                                         Maxis      T
## 964                                                 From Software      M
## 965                                                Valve Software      M
## 966                                                        Konami      E
## 967                                                                     
## 968                                                      Sega AM2      T
## 969                                                     Hangar 13      M
## 970                                                  Sucker Punch      E
## 971                                                        BudCat      T
## 972                                             Dimps Corporation      E
## 973                                                    EA Tiburon      E
## 974                                                                     
## 975                                               Visual Concepts      E
## 976                                                       Turn 10      E
## 977                                               Tango Gameworks      M
## 978                                                 Retro Studios      T
## 979                                                                     
## 980                                                                     
## 981                                                                     
## 982                                            Rockstar San Diego      T
## 983                                                                     
## 984                                            SCEE London Studio      M
## 985                                                 Genuine Games      M
## 986                                                                     
## 987                                                                     
## 988                                                    Team Ninja      T
## 989                                                          TOSE   E10+
## 990                                             Traveller's Tales   E10+
## 991                                                                     
## 992                                                                     
## 993                                                                     
## 994                                                           THQ      T
## 995                                            Heavy Iron Studios      E
## 996                                     Camelot Software Planning      E
## 997                                                                     
## 998                                                                     
## 999                                                     Aki Corp.      M
## 1000                                      Red Storm Entertainment      M
## 1001                                            VIS Entertainment      M
## 1002                                                                    
## 1003                                                        Maxis      T
## 1004                                                    LucasArts      T
## 1005                                                                    
## 1006                                             Pandemic Studios      T
## 1007                                                                    
## 1008                                                    EA Sports      E
## 1009                                            Avalanche Studios      M
## 1010                                                                    
## 1011                                                                    
## 1012                                                                    
## 1013                                                                    
## 1014                                                    EA Canada      E
## 1015                                              Realtime Worlds      M
## 1016                                                      Nd Cube      E
## 1017                                                       Konami   E10+
## 1018                                                                    
## 1019                                                                    
## 1020                                                                    
## 1021                                                Monolith Soft      T
## 1022                                             Ubisoft Montreal      M
## 1023                                             Terminal Reality      T
## 1024                                                       Capcom      M
## 1025                                                                    
## 1026                                                                    
## 1027                              Ready at Dawn, SCE Santa Monica      M
## 1028                                                    EA Canada      E
## 1029                                             SCE Japan Studio   E10+
## 1030                                                                    
## 1031                                                                    
## 1032                                                   ArtePiazza      T
## 1033                                            Vicarious Visions      E
## 1034                                               Io Interactive      M
## 1035                                                                    
## 1036                             Ubisoft Reflections, Ivory Tower      T
## 1037                                                                    
## 1038                                              Visual Concepts      E
## 1039                                                   EA Tiburon      E
## 1040                                                      Tri-Ace      T
## 1041                            Infinity Ward, Sledgehammer Games      M
## 1042                                               Arkane Studios      M
## 1043                                                                    
## 1044                                       Harmonix Music Systems      T
## 1045                                                        Namco      T
## 1046                                              Electronic Arts      E
## 1047                                                                    
## 1048                                                    3d6 Games      E
## 1049                                                Magic Pockets      E
## 1050                                                                    
## 1051                                             Artefacts Studio      E
## 1052                                                    EA Sports      E
## 1053                                               Valve Software   E10+
## 1054                                                                    
## 1055                                                    EA Sports      E
## 1056                                              The Sims Studio      T
## 1057                                                  Hello Games      T
## 1058                                                                    
## 1059                                                   Activision      T
## 1060                                           Zipper Interactive      M
## 1061                                             Irrational Games      M
## 1062                                                                    
## 1063                                                                    
## 1064                                                                    
## 1065                                                                    
## 1066                                             Griptonite Games      E
## 1067                                         Webfoot Technologies      E
## 1068                                                                    
## 1069                                                       Capcom      M
## 1070                                          Jupiter Corporation      E
## 1071                                             Farsight Studios      E
## 1072                                                 EA Vancouver      T
## 1073                                                                    
## 1074                                                                    
## 1075                                                   Sonic Team      E
## 1076                                                Volition Inc.      M
## 1077                                                                    
## 1078                                                                    
## 1079                                                Firaxis Games   E10+
## 1080                                                                    
## 1081                                                        Maxis      T
## 1082                                                     Nintendo      E
## 1083                                           Bandai Namco Games      E
## 1084                                                    Rebellion      T
## 1085                                                    EA Canada      E
## 1086                                                    EA Sports      E
## 1087                                             Pandemic Studios      T
## 1088                                                                    
## 1089                                                  Shaba Games      E
## 1090                                 Artificial Mind and Movement      E
## 1091                                                                    
## 1092                                                      BioWare      M
## 1093                                       Paradigm Entertainment      T
## 1094                                                    EA Sports      E
## 1095                                                   EA Chicago      T
## 1096                                       Blizzard Entertainment      T
## 1097                                           Heavy Iron Studios      E
## 1098                                           SuperMassive Games      M
## 1099                                        HB Studios Multimedia      E
## 1100                                                                    
## 1101                                                EA Sports Big      E
## 1102                                                      Ubisoft   E10+
## 1103                                                       Midway      E
## 1104                                                Volition Inc.      M
## 1105                                                    EA Canada      E
## 1106                                                     TT Games   E10+
## 1107                                                        Spike      T
## 1108                                                From Software      M
## 1109                                                                    
## 1110                                                     HAL Labs   E10+
## 1111                                                  Hudson Soft      E
## 1112                                                                    
## 1113                                                Krome Studios      T
## 1114                                                    EA Canada   E10+
## 1115                                                 Ninja Theory      T
## 1116                                                                    
## 1117                                            EA Redwood Shores      E
## 1118                                                                    
## 1119                                                  EA Montreal      M
## 1120                                                                    
## 1121                                                                    
## 1122                                                                    
## 1123                                                    EA Sports      E
## 1124                                                                    
## 1125                                             Ubisoft Montreal      M
## 1126                                             Ubisoft Montreal      M
## 1127                                              Visual Concepts      E
## 1128                                                Quantic Dream      M
## 1129                                                     Nintendo      E
## 1130                                                    EA Sports      E
## 1131                                              Visual Concepts      E
## 1132                                                     Treyarch      M
## 1133                                                         SCEI      E
## 1134                                                   EA Tiburon      E
## 1135                                             Rockstar Studios      M
## 1136                                                    Rare Ltd.      E
## 1137                                                                    
## 1138                                        Frontier Developments      E
## 1139                                                     HAL Labs      E
## 1140                                                     TT Games   E10+
## 1141                                                                    
## 1142                                                       Bungie      T
## 1143                                       Harmonix Music Systems      T
## 1144                                                   ArtePiazza   E10+
## 1145                                                   EA Tiburon      E
## 1146                                                                    
## 1147                                                                    
## 1148                                             Next Level Games      E
## 1149                                                                    
## 1150                                                  id Software      M
## 1151                                                  Square Enix      E
## 1152                                                          THQ      E
## 1153                                                                    
## 1154                                                                    
## 1155                                                                    
## 1156                                            Avalanche Studios      M
## 1157                                                         KCET      M
## 1158                                                   Sonic Team      E
## 1159                                           Avalanche Software   E10+
## 1160                                              Visual Concepts      E
## 1161                                       Blizzard Entertainment      M
## 1162                                             Ubisoft Montreal      M
## 1163                                                     Nintendo      T
## 1164                                                                    
## 1165                                                                    
## 1166                                                       Konami      E
## 1167                                                                    
## 1168                                         Genius Sonority Inc.      E
## 1169                                                  Square Enix   E10+
## 1170                                                       Konami   E10+
## 1171                                                        Namco      T
## 1172                                                                    
## 1173                                                         Sega      E
## 1174                                              Digital Eclipse      E
## 1175                                            Nintendo, Nd Cube      E
## 1176                                                       Capcom      M
## 1177                                             Capcom Vancouver      M
## 1178                                                       Konami      E
## 1179                                                    EA Sports      E
## 1180                                                   Epic Games      M
## 1181                                             Ubisoft Montreal      M
## 1182                                            Vicarious Visions   E10+
## 1183                                                    EA Sports      E
## 1184                                                    EA Sports      E
## 1185                                                Pivotal Games      T
## 1186                                                       Hudson      E
## 1187                                                   ArtePiazza   E10+
## 1188                                                                    
## 1189                                           Rockstar San Diego      T
## 1190                                                   EA Chicago      T
## 1191                                                    EA Canada      T
## 1192                                              Cat Daddy Games      E
## 1193                                                                    
## 1194                                                                    
## 1195                                                                    
## 1196                                                                    
## 1197                                                     ChunSoft      E
## 1198                                                                    
## 1199                                                                    
## 1200                                                         TOSE      E
## 1201                                            Traveller's Tales   E10+
## 1202                                      Reflections Interactive      T
## 1203                                                      Ubisoft      M
## 1204                                            Traveller's Tales   E10+
## 1205                                                                    
## 1206                                            Vicarious Visions      E
## 1207                                            Vicarious Visions      T
## 1208                                                                    
## 1209                                                 MachineGames      M
## 1210                                                     2K Czech      M
## 1211                                                   Mind Candy      E
## 1212                                                     2K Marin      M
## 1213                                                      Level 5      T
## 1214                                       Blizzard Entertainment      T
## 1215                                                h.a.n.d. Inc.      E
## 1216                                                Ubisoft Paris      T
## 1217                                                                    
## 1218                                                    EA Sports      E
## 1219                                                                    
## 1220                                       Naughty Dog, Sony Bend      T
## 1221                                           Namco Bandai Games   E10+
## 1222                                                       Konami      E
## 1223                                                                    
## 1224                                                                    
## 1225                                               Arkane Studios      M
## 1226                                    Camelot Software Planning      E
## 1227                                                                    
## 1228                                                     Treyarch      M
## 1229                                                   Cavia Inc.      M
## 1230                                                                    
## 1231                                             The Code Monkeys      T
## 1232                                                Retro Studios      E
## 1233                                                                    
## 1234                                                                    
## 1235                                                                    
## 1236                                                                    
## 1237                                                                    
## 1238                                                                    
## 1239                                                    EA Canada      T
## 1240                                             Amusement Vision      E
## 1241                                                        Namco      E
## 1242             Genius Sonority Inc., Disney Interactive Studios      E
## 1243                                            EA Redwood Shores      E
## 1244                                               Visceral Games      M
## 1245                                                                    
## 1246                                                                    
## 1247                                                                    
## 1248                                                                    
## 1249                                                                    
## 1250                                              Electronic Arts      T
## 1251                                                                    
## 1252                                             Griptonite Games      T
## 1253                                           Sports Interactive      E
## 1254                                                      Level 5   E10+
## 1255                                                        Namco      T
## 1256                                                     Treyarch      T
## 1257                                                        Genki      E
## 1258                                                                    
## 1259                                                Volition Inc.      M
## 1260                                                    EA Sports      E
## 1261                                                                    
## 1262                                                                    
## 1263                                                                    
## 1264                                                                    
## 1265                                                    LucasArts      T
## 1266                                                                    
## 1267                                       Harmonix Music Systems      T
## 1268                                                  Square Enix      T
## 1269                                                        EA LA      T
## 1270                                                   EA Tiburon      E
## 1271                                            Blue Castle Games      M
## 1272                                                                    
## 1273                                                                    
## 1274                                                     2K Czech      M
## 1275                                           Rocksteady Studios      M
## 1276                                                                    
## 1277                                                  Square Enix      T
## 1278                                                                    
## 1279                                                                    
## 1280                                                                    
## 1281                                       Backbone Entertainment      E
## 1282                                              Barking Lizards      E
## 1283                                              Insomniac Games      M
## 1284                                                       Altron      E
## 1285                                                     Zoe Mode      E
## 1286                                                     Treyarch      T
## 1287                                                   Kush Games      E
## 1288                                                    EA Sports      T
## 1289                                            Traveller's Tales   E10+
## 1290                                             Ubisoft Shanghai      T
## 1291                                                                    
## 1292                                                      Ubisoft      E
## 1293                                                          Art      E
## 1294                                                                    
## 1295                                                   Nihilistic      M
## 1296                                                Ubisoft Paris      M
## 1297                                                   EA Chicago      T
## 1298                                                   SquareSoft      T
## 1299                                                   WayForward      E
## 1300                                                     5TH Cell   E10+
## 1301                                                       Midway      T
## 1302                                                                    
## 1303                                                                    
## 1304                                             Amusement Vision      E
## 1305                                                        Namco      T
## 1306                                                                    
## 1307                                                                    
## 1308                                                                    
## 1309                                                        Namco      E
## 1310                                                       Helixe      E
## 1311                                                                    
## 1312                                                      EA DICE      T
## 1313                                                 Kaos Studios      M
## 1314                                                       Capcom      M
## 1315                                                    EA Sports      E
## 1316                                           Rockstar San Diego      M
## 1317                                                       Capcom      M
## 1318                                                                    
## 1319                                                                    
## 1320                                                                    
## 1321                                                                    
## 1322                                                                    
## 1323                                                      BioWare      M
## 1324                                               Hellbent Games      E
## 1325                                                                    
## 1326                                              Visual Concepts      E
## 1327                                                                    
## 1328                                           SCEE London Studio   E10+
## 1329                                                                    
## 1330                                                                    
## 1331                                           Avalanche Software   E10+
## 1332                                                      Ubisoft      E
## 1333                                                    EA Sports      E
## 1334                                                    EA Sports      E
## 1335                                                    LucasArts      T
## 1336                                                  Blitz Games      E
## 1337                                                       Yuke's      T
## 1338                                                      BigPark      E
## 1339                                          Planet Moon Studios      E
## 1340                                                                    
## 1341                                                                    
## 1342                                     1st Playable Productions      E
## 1343                                                     Nintendo      E
## 1344                                                                    
## 1345                                   Blue Byte, Related Designs      T
## 1346                                              EA Bright Light      E
## 1347                                       Backbone Entertainment      E
## 1348                                   Digital Extremes, 2K Marin      M
## 1349                                                      BioWare      M
## 1350                                           Sand Grain Studios      T
## 1351                                                                    
## 1352                                                        Maxis   E10+
## 1353                                                     Flagship      E
## 1354                                                   EA Tiburon      E
## 1355                                                                    
## 1356                                                                    
## 1357                                               Visceral Games      M
## 1358                                                   EA Tiburon      E
## 1359                                                PlatinumGames      M
## 1360                                                                    
## 1361                                          Ubisoft Montpellier      E
## 1362                                                         TOSE      E
## 1363                                                       Yuke's      T
## 1364                                                                    
## 1365                                                 Danger Close      M
## 1366                                                                    
## 1367                                       Backbone Entertainment   E10+
## 1368                                              Barnstorm Games      E
## 1369                                              The Sims Studio      T
## 1370                                                                    
## 1371                                                                    
## 1372                                       Blizzard Entertainment      M
## 1373                                               Incognito Inc.      M
## 1374                                                   EA Tiburon      E
## 1375                                                    EA Canada      T
## 1376                                                     Treyarch      E
## 1377                                            Traveller's Tales   E10+
## 1378                                            EA Redwood Shores      M
## 1379                                         Exient Entertainment      T
## 1380                                                                    
## 1381                                            Traveller's Tales   E10+
## 1382                                                        Namco      E
## 1383                                            Dimps Corporation      E
## 1384                                                                    
## 1385                                                                    
## 1386                                                  Codemasters      E
## 1387                                             Playground Games   E10+
## 1388                                                    EA Sports      E
## 1389                                                                    
## 1390                                                                    
## 1391                                                                    
## 1392                                                  Omega Force      T
## 1393                                                                    
## 1394                                          NetherRealm Studios      T
## 1395                                             Ubisoft Montreal      M
## 1396                                                       Arzest      E
## 1397                                                     TT Games   E10+
## 1398                                               Luxoflux, Inc.      M
## 1399                                                                    
## 1400                                                                    
## 1401                                                       Crytek      M
## 1402  Warner Bros. Interactive Entertainment, NetherRealm Studios      M
## 1403                                                                    
## 1404                                             Crystal Dynamics      M
## 1405                                                                    
## 1406                                             Sega, Sonic Team      E
## 1407                                                 Z-Axis, Ltd.      T
## 1408                                               Now Production      E
## 1409                                            Traveller's Tales   E10+
## 1410                                               Eidos Montreal      M
## 1411                                                                    
## 1412                                  Square Enix, Think and Feel   E10+
## 1413                                                     Treyarch      M
## 1414                                               Eidos Montreal      M
## 1415                                       Obsidian Entertainment      T
## 1416                                                                    
## 1417                                                        Maxis      T
## 1418                                            Blue Castle Games      M
## 1419                                           Namco Bandai Games      E
## 1420                                      Red Storm Entertainment      T
## 1421                                                    Black Box      T
## 1422                                            Vicarious Visions      E
## 1423                                              Bluepoint Games      M
## 1424                                           SCEE London Studio      T
## 1425                                                                    
## 1426                                                                    
## 1427                                                                    
## 1428                                                        Namco      M
## 1429                                                          THQ      T
## 1430                                                                    
## 1431                                              Electronic Arts      E
## 1432                                                                    
## 1433                                            Taito Corporation      E
## 1434                                              Criterion Games   E10+
## 1435                                         Monolith Productions      M
## 1436                                            Evolution Studios      T
## 1437                                                  Omega Force      T
## 1438                                                      EA DICE      M
## 1439                                                                    
## 1440                                                The Coalition      M
## 1441                                                                    
## 1442                                                                    
## 1443                                                    EA Canada      E
## 1444                                                    EA Canada      E
## 1445                                               Papaya Studios      E
## 1446                                                    EA Canada      E
## 1447                                            Pitbull Syndicate      T
## 1448                                                       Capcom      M
## 1449                                             Ubisoft Montreal      M
## 1450                                                   Team Ninja      T
## 1451                                                       Crytek      M
## 1452                                                         TOSE   E10+
## 1453                                                       Capcom      T
## 1454                                                                    
## 1455                                            Vicarious Visions      M
## 1456                                             Ubisoft Montreal      M
## 1457                                       Codemasters Birmingham      E
## 1458                                                       Capcom      T
## 1459                                                     Nintendo   E10+
## 1460                                                    EA Canada   E10+
## 1461                                                       Capcom      T
## 1462                                                                    
## 1463                                              Visual Concepts      E
## 1464                                              Rockstar Vienna      M
## 1465                                                      EA DICE      T
## 1466                                                    EA Sports      E
## 1467                                                                    
## 1468                                                                    
## 1469                                         Remedy Entertainment      T
## 1470                                                                    
## 1471                                                                    
## 1472                                                                    
## 1473                                                                    
## 1474                                                                    
## 1475                                                Retro Studios      T
## 1476                                                                    
## 1477                                                Steel Monkeys      E
## 1478                                                       Yuke's      T
## 1479                                            Vicarious Visions   E10+
## 1480                                               Rockstar Leeds      M
## 1481                                                       Yuke's      T
## 1482                                       Blizzard Entertainment      T
## 1483                                                                    
## 1484                                                                    
## 1485                                              Visual Concepts      E
## 1486                                                      Ubisoft      M
## 1487                                                                    
## 1488                                                Magic Pockets      E
## 1489                                                                    
## 1490                                             Ubisoft Montreal      E
## 1491                                                  Team Fusion      E
## 1492                                                                    
## 1493                                                                    
## 1494                                                                    
## 1495                                                                    
## 1496                                           Bethesda Softworks      E
## 1497                                                  id Software      M
## 1498                                            Traveller's Tales   E10+
## 1499                                                 Toys for Bob   E10+
## 1500                                        CD Projekt Red Studio      M
## 1501                                                                    
## 1502                                                                    
## 1503                                                      Acclaim      M
## 1504                                        Radical Entertainment      M
## 1505                                              Criterion Games      T
## 1506                                       Harmonix Music Systems      T
## 1507                                                                    
## 1508                                                                    
## 1509                                                    EA Sports      E
## 1510                                                    Good-Feel      E
## 1511                                                 Toys for Bob   E10+
## 1512                                                         SCEA      T
## 1513                                                                    
## 1514                                                                    
## 1515               Namco Bandai Games America, Namco Bandai Games      T
## 1516                                               Ubisoft Quebec      M
## 1517                                                                    
## 1518                                             Ubisoft Montreal      M
## 1519                                               Creatures Inc.      E
## 1520                                            Traveller's Tales   E10+
## 1521                                                                    
## 1522                                                                    
## 1523                                                                    
## 1524                                                       Crytek      M
## 1525                                               Pocket Studios      E
## 1526                                                                    
## 1527                                                           M2      E
## 1528                                             Artefacts Studio      E
## 1529                                              Melbourne House      T
## 1530                                                     Techland      M
## 1531                                        Bethesda Game Studios      M
## 1532                                            Dimps Corporation      E
## 1533                                                Ubisoft Sofia      M
## 1534                                                    EA Canada      E
## 1535                                                                    
## 1536                                                      Ubisoft      E
## 1537                                                ZeniMax Media      M
## 1538                                            Snowblind Studios      T
## 1539                                            Traveller's Tales   E10+
## 1540                                                                    
## 1541                                                                    
## 1542                                Lexis Numerique, Virtual Toys      E
## 1543                                                                    
## 1544                                               Rockstar North      M
## 1545                                                    EA Canada   E10+
## 1546                                                         KCET      M
## 1547                                                       Konami      T
## 1548                                            Vicarious Visions      T
## 1549                                                     TT Games   E10+
## 1550                                                        Maxis      T
## 1551                                                From Software      T
## 1552                                           Opus, Project Sora   E10+
## 1553                                     Nintendo, Spike Chunsoft      E
## 1554                                            Traveller's Tales   E10+
## 1555                                                                    
## 1556                                                                    
## 1557                                              Visual Concepts      E
## 1558                                      Neversoft Entertainment      T
## 1559                                                                    
## 1560                                           Kojima Productions      M
## 1561                                             Griptonite Games      E
## 1562                                                CyberConnect2      T
## 1563                                                   3G Studios      E
## 1564                                                         Sega      T
## 1565                                                       Yuke's      T
## 1566                                                   Sonic Team      E
## 1567                                                                    
## 1568                                                      Tamsoft      T
## 1569                                                  THQ, Yuke's      T
## 1570                                                      Virtuos      T
## 1571                                                  Ghost Games   E10+
## 1572                                                    EA Canada      E
## 1573                                           Rockstar San Diego      E
## 1574                                                                    
## 1575                                           Sports Interactive      E
## 1576                                                                    
## 1577                                                                    
## 1578                                                                    
## 1579                                                   NanaOn-Sha      E
## 1580                                              Nixxes Software      T
## 1581                                                                    
## 1582                                               Hellbent Games      E
## 1583                                                    EA Sports      E
## 1584                                                Volition Inc.      M
## 1585                                                Krome Studios      T
## 1586                                                                    
## 1587                                             Ubisoft Montreal      M
## 1588                                                    Slant Six      M
## 1589                                                                    
## 1590                                                                    
## 1591                                                                    
## 1592                                                    EA Canada      T
## 1593                                         Genius Sonority Inc.      E
## 1594                                              Criterion Games      M
## 1595                                             Ubisoft Montreal      M
## 1596                               Tarsier Studios, Double Eleven      E
## 1597                      Spike Chunsoft Co. Ltd., Spike Chunsoft      E
## 1598                                                 Chris Sawyer      E
## 1599                                                                    
## 1600                                             Core Design Ltd.      T
## 1601                                             Ubisoft Shanghai      T
## 1602                                                                    
## 1603                                              Insomniac Games      T
## 1604                                                      49Games      E
## 1605                                            Snowblind Studios      T
## 1606                                         Oddworld Inhabitants      T
## 1607                                                        Namco      E
## 1608                                                       Yuke's      T
## 1609                                                                    
## 1610                                            Traveller's Tales   E10+
## 1611                                           Double Helix Games      T
## 1612                                        Radical Entertainment      M
## 1613                                                                    
## 1614                                                    EA Sports      E
## 1615                                                       Konami      E
## 1616                                                    EA Sports      E
## 1617                                                   Team Ninja      M
## 1618                                                                    
## 1619                                            Traveller's Tales      E
## 1620                                      Reflections Interactive      M
## 1621                                             Griptonite Games      M
## 1622                                                                    
## 1623                                                                    
## 1624                                                     TT Games   E10+
## 1625                                                                    
## 1626                                            Vicarious Visions      E
## 1627                                                                    
## 1628                                                  Omega Force      T
## 1629                                                                    
## 1630                                                    Rare Ltd.      E
## 1631                                      Neversoft Entertainment      T
## 1632                                                                    
## 1633                                                    EA Canada   E10+
## 1634                                        High Voltage Software   E10+
## 1635                                                    EA Canada      E
## 1636                                           Bandai Namco Games      T
## 1637                                                    Rare Ltd.      E
## 1638                                    Camelot Software Planning      E
## 1639                                                                    
## 1640                                                                    
## 1641                                                                    
## 1642                                                                    
## 1643                                                                    
## 1644                                                                    
## 1645                                                                    
## 1646                                    Camelot Software Planning      E
## 1647                                                                    
## 1648                                                 neo Software      M
## 1649                                                                    
## 1650                                              Visual Concepts      E
## 1651                                                    EA Sports      E
## 1652                                              Rainbow Studios      E
## 1653                                                  Blitz Games      E
## 1654                                              Spark Unlimited      T
## 1655                                              Matrix Software   E10+
## 1656                                         Savage Entertainment      T
## 1657                                                       Capcom      T
## 1658                                                 Sucker Punch      E
## 1659                                                       Yuke's      T
## 1660                                                                    
## 1661                                                       Capcom      M
## 1662                                                                    
## 1663                                                                    
## 1664                                              Electronic Arts      E
## 1665                                                CyberConnect2      T
## 1666                                              Electronic Arts      T
## 1667                                               Visceral Games      M
## 1668                                                                    
## 1669                                            Nex Entertainment      M
## 1670                                                                    
## 1671                                                        EA LA      E
## 1672                                                                    
## 1673                                             Surreal Software      T
## 1674                                                        Maxis      T
## 1675                                                                    
## 1676                                                 Climax Group      E
## 1677                                                  Codemasters      E
## 1678                                                                    
## 1679                                                     Nintendo      E
## 1680                                                                    
## 1681                                                                    
## 1682                                                                    
## 1683                                                                    
## 1684                                                                    
## 1685                                          Shiny Entertainment      T
## 1686                                             Locomotive Games      E
## 1687                                                    EA Sports      E
## 1688                                                    EA Sports      E
## 1689                                                                    
## 1690                                                       Altron      E
## 1691                                            Traveller's Tales   E10+
## 1692                                           Nintendo EAD Tokyo      E
## 1693                                            Vicarious Visions      E
## 1694                                                       Konami      E
## 1695                                      Bungie Software, Bungie      T
## 1696                                        Radical Entertainment      M
## 1697                                                                    
## 1698                                                                    
## 1699                                                                    
## 1700                                               Io Interactive      M
## 1701                                                     Zoe Mode      E
## 1702                                                       Yuke's      T
## 1703                                                     Treyarch      E
## 1704                                                                    
## 1705                       Nintendo, Nintendo Software Technology      E
## 1706                                           Kojima Productions      M
## 1707                                                                    
## 1708                                                    TT Fusion      E
## 1709                                                                    
## 1710                                                                    
## 1711                                          NetherRealm Studios      T
## 1712                                                                    
## 1713                                                     Sega AM2      T
## 1714                                                                    
## 1715                                                      Ubisoft   E10+
## 1716                                            Vicarious Visions      E
## 1717                                Omega Force, Tecmo Koei Games      T
## 1718                                                                    
## 1719                                                                    
## 1720                                      Neversoft Entertainment      M
## 1721                                                Krome Studios      E
## 1722                                                    Slant Six      M
## 1723                                                                    
## 1724                                            Traveller's Tales   E10+
## 1725                                               Creatures Inc.      E
## 1726                                                       Yuke's      T
## 1727                                                                    
## 1728                                                                    
## 1729                                                                    
## 1730                                           Sand Grain Studios      T
## 1731                                               Rockstar North      M
## 1732                                       Obsidian Entertainment      M
## 1733                                                                    
## 1734                                                       Yuke's      T
## 1735                                                                    
## 1736                                                        EA LA      T
## 1737                                                  EA Montreal      M
## 1738                                                        Maxis   E10+
## 1739                                                                    
## 1740                                                     Nintendo      E
## 1741                                            Traveller's Tales   E10+
## 1742                                           Rockstar San Diego   E10+
## 1743                                      Red Storm Entertainment      T
## 1744                                                 Light Weight      T
## 1745                                                      EA DICE      T
## 1746                                                   Sonic Team   E10+
## 1747                                                    EA Sports      E
## 1748                                                                    
## 1749                                                                    
## 1750                                                                    
## 1751                                                                    
## 1752                                                                    
## 1753                                                      Ubisoft      E
## 1754                                                    EA Canada      E
## 1755                                                         TOSE      T
## 1756                                                                    
## 1757                                             City Interactive      M
## 1758                                            Dimps Corporation      E
## 1759                                           Sports Interactive      E
## 1760                                                       Midway      T
## 1761                                                        EA LA      T
## 1762                                                  Blitz Games      M
## 1763                                                                    
## 1764                                           Sports Interactive       
## 1765                                                                    
## 1766                                                 Danger Close      M
## 1767                                                                    
## 1768                                                                    
## 1769                                                                    
## 1770                                                                    
## 1771                                                    EA Sports      E
## 1772                                                        Namco      E
## 1773                                                Infinity Ward      M
## 1774                                                                    
## 1775                                           Avalanche Software      E
## 1776                                                       Yuke's      T
## 1777                                                                    
## 1778                                                                    
## 1779                                          Vingt-et-un Systems      E
## 1780                                                       K2 LLC      M
## 1781                                             SCE Japan Studio      T
## 1782                                                   SquareSoft      E
## 1783                                                   Team Ninja      M
## 1784                                                       Yuke's      T
## 1785                                                     Ambrella   E10+
## 1786                                                     Treyarch      T
## 1787                         Konami Computer Entertainment Hawaii   E10+
## 1788                                                                    
## 1789                                                                    
## 1790                                                                    
## 1791                                                                    
## 1792                                                                    
## 1793                                                     EA Games      T
## 1794                                                                    
## 1795                                                    Clap Hanz      E
## 1796                                                                    
## 1797                                           Rockstar San Diego      M
## 1798                                                                    
## 1799                                              Insomniac Games      M
## 1800                                                       Capcom      T
## 1801                                                                    
## 1802                                                CyberConnect2      T
## 1803                                                Day 1 Studios      T
## 1804                                              Electronic Arts      E
## 1805                                                                    
## 1806                                                       Helixe      E
## 1807                                             Ubisoft Montreal      M
## 1808                                            Traveller's Tales   E10+
## 1809                                             Ubisoft Montreal      M
## 1810                                                                    
## 1811                                                      EA DICE      T
## 1812                                      Neversoft Entertainment      T
## 1813                                            Creative Assembly      M
## 1814                                                                    
## 1815                                       Level 5, Brownie Brown   E10+
## 1816                                                                    
## 1817                                           SCEE London Studio      T
## 1818                                                     Nintendo      E
## 1819                                                                    
## 1820                                                        Exakt      E
## 1821                                                                    
## 1822                                          Ubisoft Montpellier   E10+
## 1823                                           United Front Games      E
## 1824                                           Zipper Interactive      M
## 1825                                                      Ubisoft      T
## 1826                                                     Treyarch      T
## 1827                                                                    
## 1828                                                      Ubisoft      T
## 1829                                                       BudCat      T
## 1830                                           Sports Interactive      E
## 1831                                        Ryu ga Gotoku Studios      M
## 1832                                                        Atlus      M
## 1833                                                     Treyarch      T
## 1834                                                Ruffian Games      M
## 1835                                       Harmonix Music Systems      T
## 1836                                                      BioWare      M
## 1837                                               Valve Software      M
## 1838                                                                    
## 1839                                       Harmonix Music Systems      T
## 1840                                                    EA Canada      M
## 1841                                       Harmonix Music Systems      T
## 1842                                             Ubisoft Montreal      M
## 1843                                                                    
## 1844                                                                    
## 1845                                                                    
## 1846                                                                    
## 1847                                                     Nintendo   E10+
## 1848                                                       Yuke's      T
## 1849                                            Dimps Corporation      T
## 1850                                                                    
## 1851                                                                    
## 1852                                                                    
## 1853                                                Mercury Steam      M
## 1854                                                                    
## 1855                                                         TOSE   E10+
## 1856                                                                    
## 1857                                                                    
## 1858                                                                    
## 1859                                                                    
## 1860                                                                    
## 1861                                                                    
## 1862                                                                    
## 1863                                                    EA Sports      E
## 1864                                           SCEE London Studio      T
## 1865                                                                    
## 1866                                                        Namco      T
## 1867                                                     TT Games   E10+
## 1868                                                     EA Games   E10+
## 1869                                                  Codemasters      E
## 1870                                              Electronic Arts      T
## 1871                                                      Tri-Ace      E
## 1872                                                          MTO      E
## 1873                                                   EA Tiburon      E
## 1874                                             Amusement Vision      M
## 1875                                      Neversoft Entertainment      T
## 1876                                         Webfoot Technologies      E
## 1877                              EA Redwood Shores, EA Salt Lake   E10+
## 1878                                              Visual Concepts      E
## 1879                                                                    
## 1880                                    Sony Online Entertainment      T
## 1881                                         Slightly Mad Studios      E
## 1882                                                   EA Tiburon      E
## 1883                                                   Sonic Team   E10+
## 1884                                              Electronic Arts      M
## 1885                                                         Sega      E
## 1886                                                    LucasArts      T
## 1887                                                                    
## 1888                                                       Yuke's      T
## 1889                                            Traveller's Tales      E
## 1890                                                   EA Tiburon      E
## 1891                                                 EA Black Box      T
## 1892                                                                    
## 1893                                                   EA Tiburon      E
## 1894                                             Big Sky Software      E
## 1895                                                Visual Impact      E
## 1896                                                         TOSE   E10+
## 1897                                          Vingt-et-un Systems      E
## 1898                                            Creative Assembly      T
## 1899                                                     Sega AM2      T
## 1900                                               Visceral Games      M
## 1901                                                                    
## 1902                                                                    
## 1903                                       Ubisoft Shanghai/Paris      T
## 1904                                                                    
## 1905                                             Playground Games      E
## 1906                                                                    
## 1907                                                                    
## 1908                                                Krome Studios      T
## 1909                                         Webfoot Technologies      T
## 1910                                                                    
## 1911                                                        Namco      T
## 1912                                                       PopCap   E10+
## 1913                                   Electronic Arts, Rebellion      T
## 1914                                                                    
## 1915                                          Amaze Entertainment      E
## 1916                                                     Treyarch      T
## 1917                                                    EA Sports      E
## 1918                                Lexis Numerique, Virtual Toys      E
## 1919                                             Ubisoft Montreal      T
## 1920                                                                    
## 1921                                                                    
## 1922                                                       Yuke's      T
## 1923                                                                    
## 1924                                                                    
## 1925                                             Crystal Dynamics      T
## 1926                                                                    
## 1927                                                       Konami      E
## 1928                                                        Namco      T
## 1929                                                   EA Tiburon      E
## 1930                                                         TOSE      E
## 1931                                                                    
## 1932                                                         SCEE      E
## 1933                                                CyberConnect2      T
## 1934                                           Rockstar San Diego      M
## 1935                                                  Square Enix      T
## 1936                                                                    
## 1937                                                                    
## 1938                                                       Midway      M
## 1939                                              Page 44 Studios      E
## 1940                                               Rockstar Leeds      M
## 1941                                             Griptonite Games      E
## 1942                                                     EA Games      M
## 1943                                                                    
## 1944                                               FreeStyleGames      T
## 1945                         Mad Doc Software, Rockstar Vancouver      T
## 1946                                                    EA Canada      E
## 1947                                                                    
## 1948                                        Radical Entertainment      T
## 1949                                       Blizzard Entertainment      T
## 1950                                                                    
## 1951                                                                    
## 1952                                                    Rebellion      M
## 1953                                                 Toys for Bob   E10+
## 1954                                               Blizzard North      M
## 1955                                                        Arika      E
## 1956                                              Digital Eclipse      E
## 1957                                             Barnhouse Effect      T
## 1958                                                  Vigil Games      M
## 1959                                             Pandemic Studios      T
## 1960                                                     TT Games   E10+
## 1961                                               Incognito Inc.      T
## 1962                                                  Codemasters      T
## 1963                                                 Sumo Digital   E10+
## 1964                                                  Codemasters      E
## 1965                                                      n-Space      T
## 1966                                                                    
## 1967                                                   Cavia Inc.      M
## 1968                                           Zipper Interactive      T
## 1969                                                                    
## 1970                                        Black Lantern Studios      E
## 1971                                                                    
## 1972                                                                    
## 1973                                                                    
## 1974                                                                    
## 1975                                              Visual Concepts      E
## 1976                                                     TT Games   E10+
## 1977                                              Fox Interactive      T
## 1978                                                 Z-Axis, Ltd.      E
## 1979                                                    EA Sports      T
## 1980                                       Microsoft Game Studios      E
## 1981                                                     Sega AM3      E
## 1982                                                        Tecmo      E
## 1983                                                    EA Sports      E
## 1984                                                 Virtual Toys      E
## 1985                                             Crystal Dynamics      T
## 1986                                                       Yuke's      T
## 1987                                                                    
## 1988                                           United Front Games      M
## 1989                                                 Climax Group      E
## 1990                                                                    
## 1991                                                 8ing/Raizing      T
## 1992                                                       Konami   E10+
## 1993                                                    Rebellion      M
## 1994                                                                    
## 1995                                                                    
## 1996                                                      Nd Cube      E
## 1997                                                         Sega   E10+
## 1998                                                                    
## 1999                                                    EA Canada      T
## 2000                           Electronic Arts, EA Redwood Shores      T
## 2001                                                  Codemasters      E
## 2002                                                Splash Damage      T
## 2003                                              Rainbow Studios      E
## 2004                                             Studio Liverpool      E
## 2005                                                       Yuke's      T
## 2006                                            Traveller's Tales   E10+
## 2007                       Red Storm Entertainment, Ubisoft Paris      T
## 2008                                                         TOSE      E
## 2009                                                    TT Fusion   E10+
## 2010                                                         NuFX      E
## 2011                                                                    
## 2012                                                                    
## 2013                     Tantalus Interactive, Tantatus, Nintendo      T
## 2014                                            Traveller's Tales   E10+
## 2015                            Crystal Dynamics, Nixxes Software      M
## 2016                                                       Capcom      T
## 2017                                              Electronic Arts      E
## 2018                                           Avanquest Software      E
## 2019                                               Bigbig Studios      T
## 2020                                                    EA Canada      E
## 2021                                        Black Lantern Studios      E
## 2022                                                 EA Salt Lake      E
## 2023                                    Spike, Namco Bandai Games      T
## 2024                                               Luxoflux, Inc.      E
## 2025                                              Visual Concepts      E
## 2026                       Red Storm Entertainment, Ubisoft Paris      T
## 2027                                                   Sonic Team   E10+
## 2028                                                                    
## 2029                                                                    
## 2030                               Eurocom Entertainment Software   E10+
## 2031                                             Longtail Studios   E10+
## 2032                                            Traveller's Tales   E10+
## 2033                                              Powerhead Games      E
## 2034                                   Epic Games, People Can Fly      M
## 2035                                            Vicarious Visions   E10+
## 2036                                                   EA Tiburon      E
## 2037                                      Sega, Dimps Corporation      E
## 2038                                       Harmonix Music Systems      T
## 2039                                                     EA Games      E
## 2040                                                         Koei      E
## 2041                                           Heavy Iron Studios      E
## 2042                                                                    
## 2043                                                 8ing/Raizing      T
## 2044                                                         Hyde      E
## 2045                                                 Project Aces      T
## 2046                                   Electronic Arts, Rebellion      T
## 2047                                                                    
## 2048                                                                    
## 2049                                                                    
## 2050                                            Team Ninja, Tecmo      M
## 2051                                                      Ubisoft      M
## 2052                                          Ubisoft Montpellier   E10+
## 2053                                                                    
## 2054                                             Ubisoft Montreal      T
## 2055                                                        Tecmo       
## 2056                                          Ubisoft Montpellier      M
## 2057                                           Bandai Namco Games   E10+
## 2058                                           Razorworks Studios      E
## 2059                                                                    
## 2060                                                 EA Salt Lake   E10+
## 2061                                                Ready at Dawn      M
## 2062                                                                    
## 2063                                                                    
## 2064                                                                    
## 2065                                                                    
## 2066                                                                    
## 2067                                                                    
## 2068                                                        Namco      T
## 2069                                                                    
## 2070                                                                    
## 2071                                                                    
## 2072                                                   989 Sports      E
## 2073                                                                    
## 2074                                                  Omega Force      T
## 2075                                           UBlart Montpellier   E10+
## 2076                                                                    
## 2077                                       Microsoft Game Studios      E
## 2078                                                      Ubisoft   E10+
## 2079                                                    EA Sports      E
## 2080                                                                    
## 2081                                                       Yuke's      T
## 2082                                                     HAL Labs      E
## 2083                                          Free Radical Design      M
## 2084                                         Oddworld Inhabitants      T
## 2085                                                 DreamFactory      T
## 2086                                                  Codemasters      T
## 2087                                      Neversoft Entertainment      T
## 2088                                                   Sonic Team   E10+
## 2089                                           SCEE London Studio      E
## 2090                                                       Capcom      T
## 2091                                                 Project Aces      T
## 2092                                                From Software      M
## 2093                                            Incinerator Games      E
## 2094                                                Route 1 Games      E
## 2095                                              Rockstar London      T
## 2096                                                       Konami      E
## 2097                                              Electronic Arts      E
## 2098                                                                    
## 2099                                                    EA Sports      E
## 2100                                           Namco Bandai Games      T
## 2101                                        Bethesda Game Studios      M
## 2102                                                       Hudson      E
## 2103                                                                    
## 2104                                                       Altron      E
## 2105                                                                    
## 2106                                                       Yuke's      T
## 2107                                                                    
## 2108                                               Visceral Games      M
## 2109                                                         KCET      T
## 2110                                                                    
## 2111                                              Ubisoft Toronto      M
## 2112                                                   EA Tiburon      E
## 2113                                              Visual Concepts      E
## 2114                                                    EA Sports      E
## 2115                                                    EA Sports      E
## 2116                                               Rockstar North      M
## 2117                                                   EA Tiburon      E
## 2118                                          Intelligent Systems      E
## 2119                                      Double Fine Productions      M
## 2120                                           Avalanche Software   E10+
## 2121                                                   NanaOn-Sha      E
## 2122                                                    EA Sports      E
## 2123                                               Rockstar Leeds      M
## 2124                                                                    
## 2125                                                          THQ      E
## 2126                                                    EA Canada      E
## 2127                                                      BioWare      M
## 2128                                                       Helixe      E
## 2129                                            Vicarious Visions   E10+
## 2130                                                                    
## 2131                                                 Toys for Bob   E10+
## 2132                                                                    
## 2133                                            Traveller's Tales   E10+
## 2134                                            Traveller's Tales   E10+
## 2135                                       Dreamworks Interactive      T
## 2136                                                      Level 5      T
## 2137                                             Ubisoft Montreal      M
## 2138                                          Turtle Rock Studios      M
## 2139                                               Visceral Games      M
## 2140                                                  Square Enix       
## 2141                                                                    
## 2142                                                                    
## 2143                                                                    
## 2144                                                                    
## 2145                                                    EA Sports      E
## 2146                                              Giants Software      E
## 2147                   Vicarious Visions, Neversoft Entertainment      T
## 2148                                    Blue Tongue Entertainment      E
## 2149                                                                    
## 2150                                                    Overworks      M
## 2151                                                       Midway      M
## 2152                                        CD Projekt Red Studio      M
## 2153                                                    Rebellion      M
## 2154                                              Visual Concepts      E
## 2155                                           SCEE London Studio      M
## 2156                                    Camelot Software Planning      E
## 2157                                           Monster Games Inc.      E
## 2158                                                        Atari      E
## 2159                                                     Coresoft      E
## 2160                                             Ubisoft Montreal      E
## 2161                                             Ubisoft Montreal      M
## 2162                                                   Sonic Team   E10+
## 2163                                           Heavy Iron Studios      E
## 2164                                                                    
## 2165                                       SuperBot Entertainment      T
## 2166                                                                    
## 2167                                                                    
## 2168                                                                    
## 2169                                                       Konami      E
## 2170                                        Ryu ga Gotoku Studios      M
## 2171                                                                    
## 2172                                                Ubisoft Paris      M
## 2173                                                         Koei      T
## 2174                                          Ubisoft Reflections      T
## 2175                                                                    
## 2176                                                                    
## 2177                                             Monkey Bar Games      E
## 2178                                                  EA Montreal      M
## 2179                                                                    
## 2180                                                      Ubisoft   E10+
## 2181                                                 Toys for Bob   E10+
## 2182                                                       Capcom      T
## 2183                                            Traveller's Tales   E10+
## 2184                                              Visual Concepts      E
## 2185                                                    Guerrilla      M
## 2186                                                                    
## 2187                                                                    
## 2188                                           Heavy Iron Studios      E
## 2189                                                     Nintendo   E10+
## 2190                                                                    
## 2191                                                         KCET      M
## 2192                                                                    
## 2193                                              Ubisoft Toronto      M
## 2194                                                                    
## 2195                                                 Toys for Bob   E10+
## 2196                                                    EA Sports       
## 2197                                                                    
## 2198                                                  Alfa System      T
## 2199                                                       Yuke's      T
## 2200                                                   EA Tiburon      E
## 2201                                      Double Fine Productions      M
## 2202                                                  Buzz Monkey   E10+
## 2203                                                                    
## 2204                                           Rockstar Vancouver      T
## 2205                                                                    
## 2206                                                      Ubisoft      T
## 2207                                                                    
## 2208                                       SCEA San Diego Studios      E
## 2209                                                    EA Sports      E
## 2210                                                CyberConnect2      T
## 2211                                                    EA Sports      T
## 2212                                             Griptonite Games   E10+
## 2213                                                                    
## 2214                                      Neversoft Entertainment      T
## 2215                                                      BioWare      M
## 2216                                                      Level 5      T
## 2217                                           SCEE London Studio      T
## 2218                                                                    
## 2219                                                                    
## 2220                                                     HAL Labs      E
## 2221                                                                    
## 2222                                                                    
## 2223                                                                    
## 2224                                      Neversoft Entertainment      T
## 2225                                                       Konami      E
## 2226                                                PlatinumGames      M
## 2227                                                         SCEA      E
## 2228                                              Rainbow Studios      E
## 2229                                           Neko Entertainment      E
## 2230                                   Square Enix, h.a.n.d. Inc.   E10+
## 2231                                                  Codemasters      M
## 2232                                                                    
## 2233                                                     TT Games   E10+
## 2234                                                   Activision   E10+
## 2235                                                          UDS      E
## 2236                                             Gearbox Software      M
## 2237                                                     TT Games   E10+
## 2238                                                      Ubisoft      M
## 2239                                             Gearbox Software      M
## 2240                                                  KCE Studios      E
## 2241                                                h.a.n.d. Inc.      E
## 2242                                               Titus Software      E
## 2243                                                   EA Tiburon      E
## 2244                                      Black Ops Entertainment      T
## 2245                                              Rainbow Studios      E
## 2246                                                 ImaginEngine      E
## 2247                                                       Capcom      T
## 2248                                       SCEA San Diego Studios      E
## 2249                                       Obsidian Entertainment      M
## 2250                                       Obsidian Entertainment      M
## 2251                                                                    
## 2252                                                                    
## 2253                                                                    
## 2254                                                                    
## 2255                                       SCEA San Diego Studios      E
## 2256                                         Tantalus Interactive      E
## 2257                                               Visceral Games      M
## 2258                                                     Nintendo   E10+
## 2259                                                       Yuke's      T
## 2260                                                   Sonic Team      E
## 2261                                                                    
## 2262                                                                    
## 2263                                           Mistwalker, Artoon      T
## 2264                                                                    
## 2265                                                Marvelous AQL      E
## 2266                                                         Xpec   E10+
## 2267                                                                    
## 2268                                                                    
## 2269                                                    EA Canada      E
## 2270                                        High Voltage Software      E
## 2271                                              Electronic Arts      T
## 2272                                                                    
## 2273                                             Ubisoft Shanghai      T
## 2274                                            Traveller's Tales   E10+
## 2275                                                        Genki      E
## 2276                                                Monolith Soft      T
## 2277                                                                    
## 2278                                                                    
## 2279                                                  Codemasters      E
## 2280                                                  Omega Force      T
## 2281                                              Visual Concepts      E
## 2282                                                   Mass Media      E
## 2283                                                    EA Canada      E
## 2284                                                   Sonic Team      E
## 2285                                                                    
## 2286                                                                    
## 2287                                                   Sonic Team      E
## 2288                                                  Codemasters      M
## 2289                                                    EA Sports      E
## 2290                                                   Mistwalker      T
## 2291                                                       Capcom      T
## 2292                                            Avalanche Studios      M
## 2293                                                                    
## 2294                                                   989 Sports      E
## 2295                                            Vicarious Visions      T
## 2296                                              Criterion Games   E10+
## 2297                                                       Crytek      M
## 2298                                             Ubisoft Montreal      M
## 2299                                        CD Projekt Red Studio      M
## 2300                                                 Kaos Studios      M
## 2301                                                                    
## 2302                                                     TT Games   E10+
## 2303                                                                    
## 2304                                                ZeniMax Media      M
## 2305                                                                    
## 2306                                                    Clap Hanz      E
## 2307                                              Rainbow Studios      E
## 2308                                                    EA Sports      E
## 2309                                                   Sonic Team      E
## 2310                                                                    
## 2311                                            Vicarious Visions      T
## 2312                                              Electronic Arts      T
## 2313                                            Traveller's Tales   E10+
## 2314                                                     TT Games   E10+
## 2315                                               FreeStyleGames      T
## 2316                                                 Toys for Bob   E10+
## 2317                                               Raven Software      T
## 2318                                                    EA Canada      E
## 2319                                                Magic Pockets      E
## 2320                                                     TT Games   E10+
## 2321                                            Vicarious Visions      E
## 2322                                                       Midway      M
## 2323                                          Blitz Games Studios      E
## 2324                                                         KCEK      T
## 2325                                           Zipper Interactive      M
## 2326                                                    EA Sports      E
## 2327                                                    EA Sports      E
## 2328                                                     Nintendo      E
## 2329                                          Intelligent Systems      E
## 2330                                                                    
## 2331                                   Midway Studios - San Diego      E
## 2332                                                                    
## 2333                                                                    
## 2334                                                    Guerrilla      T
## 2335                                            Traveller's Tales      E
## 2336                                                     TT Games   E10+
## 2337                                                        Namco      T
## 2338                                              Visual Concepts      E
## 2339                                            Black Rock Studio      E
## 2340                                                                    
## 2341                                                    Sony Bend      M
## 2342                                                      n-Space      T
## 2343                                              Electronic Arts      E
## 2344                                                                    
## 2345                                                                    
## 2346                                                                    
## 2347                                                    EA Canada      E
## 2348                                                                    
## 2349                                            Traveller's Tales   E10+
## 2350                                                                    
## 2351                                            RED Entertainment      E
## 2352                                                                    
## 2353                                                   EA Tiburon      E
## 2354                                             Gearbox Software      E
## 2355                                                                    
## 2356                                            EA Redwood Shores      T
## 2357                                                Infinity Ward      M
## 2358                                             Crystal Dynamics      T
## 2359                                       Codemasters Birmingham      E
## 2360                                                     Techland      M
## 2361                                                                    
## 2362                                                                    
## 2363                                              Visual Concepts      E
## 2364                                                  Square Enix      T
## 2365                                                                    
## 2366                                                                    
## 2367                                                      Ubisoft      E
## 2368                                             Ubisoft Montreal      M
## 2369                                                       Capcom      M
## 2370                                                      BioWare      E
## 2371                                                      n-Space      T
## 2372                                             Rockstar Toronto      M
## 2373                                       Harmonix Music Systems      T
## 2374                                                       Yuke's      T
## 2375                                                   Kush Games      E
## 2376                                             Gearbox Software      M
## 2377                                                  FASA Studio      T
## 2378                                                   EA Tiburon      E
## 2379                                                    Runecraft      T
## 2380                                                                    
## 2381                                                 Sumo Digital      E
## 2382                                                                    
## 2383                                      Red Storm Entertainment      M
## 2384                                           United Front Games      M
## 2385                                               Big Huge Games      M
## 2386                                                                    
## 2387                                                                    
## 2388                                                                    
## 2389                                          Jupiter Corporation   E10+
## 2390                                                  Alfa System      T
## 2391                                                                    
## 2392                                             Ubisoft Montreal   E10+
## 2393                                                                    
## 2394                           Media Molecule, United Front Games      E
## 2395                                                  Shaba Games      T
## 2396                                                                    
## 2397                                                  Codemasters      E
## 2398                                                  Codemasters      E
## 2399                                                                    
## 2400                                                Volition Inc.      M
## 2401                                                    EA Sports      T
## 2402                                                          SCi      T
## 2403                                                     TT Games   E10+
## 2404                                             Pandemic Studios      E
## 2405                                         Cooking Mama Limited      E
## 2406                                             Gearbox Software      M
## 2407                                                   SquareSoft      T
## 2408                                                  Omega Force      T
## 2409                                                                    
## 2410                                                       Crytek      M
## 2411                                             Pandemic Studios      T
## 2412                                                         SCEE      T
## 2413                                   Disney Interactive Studios      E
## 2414                                               Red Fly Studio   E10+
## 2415                                                      Cygames      T
## 2416                                                                    
## 2417                                               FreeStyleGames      T
## 2418                                                        Arika   E10+
## 2419                                                         KCET      E
## 2420                                                Rage Software      T
## 2421                                               Toolbox Design      E
## 2422                                                                    
## 2423                                      Neversoft Entertainment      T
## 2424                                                                    
## 2425                                                      Team 17      E
## 2426                                                  Omega Force      T
## 2427                                              Page 44 Studios      E
## 2428                                                                    
## 2429                                                                    
## 2430                                              Electronic Arts      E
## 2431                                             Crystal Dynamics      T
## 2432                                              Visual Concepts      E
## 2433                                                                    
## 2434                                                    EA Sports      E
## 2435                                                                    
## 2436                                                     TT Games   E10+
## 2437                                               Big Huge Games      M
## 2438                                                                    
## 2439                        Dimps Corporation, Namco Bandai Games      T
## 2440                                                     Land Ho!   E10+
## 2441                                           Namco Bandai Games      T
## 2442                                                   Team Ninja      M
## 2443                                                 Asobo Studio      E
## 2444                                                                    
## 2445                                              Criterion Games      E
## 2446                                                     Nintendo      E
## 2447                                                        Arika      T
## 2448                                                         TOSE      E
## 2449                                                   EA Tiburon      E
## 2450                                             Headstrong Games      M
## 2451                                                  EA Montreal      M
## 2452                                                  Vigil Games      M
## 2453                                                     Treyarch      T
## 2454                                            Snowblind Studios      M
## 2455                                           Bandai Namco Games      T
## 2456                                             Terminal Reality      T
## 2457                                           Heavy Iron Studios      T
## 2458                                                Monolith Soft      T
## 2459                                              Visual Concepts      E
## 2460                                                      Ubisoft      E
## 2461                                                      Acclaim      E
## 2462                                                                    
## 2463                                                 EA Black Box      T
## 2464                                                                    
## 2465                                                    Eutechnyx      T
## 2466                                              Tango Gameworks      M
## 2467                                                      Level 5      T
## 2468                                              Visual Concepts      E
## 2469                                                   EA Tiburon      E
## 2470                                                Visual Impact      E
## 2471                                                    Rebellion      M
## 2472                                                     Nintendo      E
## 2473                                        High Voltage Software   E10+
## 2474                                              Criterion Games   E10+
## 2475                                                                    
## 2476                                                      Ubisoft      T
## 2477                                                   EA Tiburon      E
## 2478                                                                    
## 2479                                                  Omega Force      T
## 2480                                                   EA Tiburon      E
## 2481                                            Nex Entertainment      T
## 2482                                  Gearbox Software, 3D Realms      M
## 2483                                 Artificial Mind and Movement      E
## 2484                                                                    
## 2485                                                    EA Sports      E
## 2486                                                Digital Anvil      M
## 2487                                                    EA Sports      E
## 2488                                                                    
## 2489                                                       Yuke's      T
## 2490                                                                    
## 2491                                                                    
## 2492                                                 Sucker Punch   E10+
## 2493                                                       Midway      E
## 2494                                                  EA Montreal   E10+
## 2495                                                       Capcom      T
## 2496                                                                    
## 2497                                                                    
## 2498                                                Firaxis Games   E10+
## 2499                                           Bandai Namco Games      T
## 2500                                                      BioWare      M
## 2501                                 Treyarch, Sledgehammer Games      M
## 2502                              Ready at Dawn, SCE Santa Monica      M
## 2503                                                                    
## 2504                               Eurocom Entertainment Software      T
## 2505                                      Neversoft Entertainment      T
## 2506                                               Raven Software      T
## 2507                                               FreeStyleGames      T
## 2508                                      Marvelous Entertainment      E
## 2509                                                  Shaba Games      T
## 2510                                                   EA Seattle      E
## 2511                                                                    
## 2512                                                                    
## 2513                                                       Konami      T
## 2514                                         Big Blue Bubble Inc.      E
## 2515                                                  Indie Built      E
## 2516                                                   Ludia Inc.      E
## 2517                                                                    
## 2518                                                       Midway      M
## 2519                                              Evolution Games      E
## 2520                                                    Atlus Co.      M
## 2521                             Capcom, Pipeworks Software, Inc.      M
## 2522                                                                    
## 2523                                            Snowblind Studios      M
## 2524                                                                    
## 2525                                                       Midway      T
## 2526                                       Harmonix Music Systems      T
## 2527                                                                    
## 2528                                           Gevo Entertainment      E
## 2529                                                        Namco      T
## 2530                                                                    
## 2531                                                    Black Box      E
## 2532                                                                    
## 2533                                                     Nintendo      E
## 2534                                                                    
## 2535                                                         SCEE      T
## 2536                                                      Tri-Ace      T
## 2537                                             Ubisoft Montreal      T
## 2538                                             SCE Japan Studio      E
## 2539                                                  Square Enix       
## 2540                                                                    
## 2541                                                                    
## 2542                                                       Konami      E
## 2543                                             Ubisoft Shanghai      M
## 2544                                                    EA Sports      E
## 2545                                                   EA Tiburon      E
## 2546                                                                    
## 2547                                                                    
## 2548                                      Neversoft Entertainment      T
## 2549                                               Ubisoft Quebec      E
## 2550                                                                    
## 2551                                                  Square Enix      T
## 2552                                                        Maxis      T
## 2553                                                        Spike      T
## 2554                                           SCEE London Studio      T
## 2555                                                                    
## 2556                                             Amusement Vision      M
## 2557                                              Gorilla Systems      E
## 2558                                                     Factor 5      T
## 2559                                                                    
## 2560                                               Io Interactive      M
## 2561                                                      Level 5      T
## 2562                                             Monkey Bar Games   E10+
## 2563                                                   SquareSoft      T
## 2564                                                  Codemasters      T
## 2565                                             Ubisoft Montreal      M
## 2566                                                 CAProduction      E
## 2567                                           Guerilla Cambridge      M
## 2568                                                       Konami      E
## 2569                                      Neversoft Entertainment      T
## 2570                                                      Virtuos      T
## 2571                                                                    
## 2572                                                   EA Seattle      E
## 2573                                                                    
## 2574                                              Electronic Arts      E
## 2575                                                                    
## 2576                                                                    
## 2577                                                Ubisoft Paris   E10+
## 2578                                                        Maxis      T
## 2579                                                                    
## 2580                                                        Spike      T
## 2581                                                       BudCat      T
## 2582                                                Krome Studios      T
## 2583                                                                    
## 2584                                                       Konami      E
## 2585                                                    Marvelous      E
## 2586                                                Gorilla Games      E
## 2587                                                                    
## 2588                                                 Ninja Theory      M
## 2589                                               Deibus Studios      E
## 2590                                                    EA Sports      E
## 2591                                                  Vigil Games      M
## 2592                                                  Ghost Games   E10+
## 2593                                        Radical Entertainment      M
## 2594                                                                    
## 2595                                                                    
## 2596                                                       Konami   E10+
## 2597                                                From Software      T
## 2598                                                                    
## 2599                                            EA Redwood Shores      M
## 2600                                                       Capcom      M
## 2601                                                       Konami      E
## 2602                                                                    
## 2603                                                                    
## 2604                                                    Rare Ltd.      M
## 2605                                      Neversoft Entertainment   E10+
## 2606                                                   EA Tiburon      E
## 2607                                                    EA Canada      E
## 2608                                                        Maxis   E10+
## 2609                                         Square Enix, Tri-Ace      T
## 2610                                             City Interactive      M
## 2611                                                     Novarama   E10+
## 2612                               Sumo Digital, Playground Games   E10+
## 2613                                                    Trilobyte      T
## 2614                                                       Yuke's      T
## 2615                                              Silicon Knights      T
## 2616                                                                    
## 2617                                                   EA Tiburon      E
## 2618                                            Digital Illusions      E
## 2619                                                                    
## 2620                                             Ubisoft Shanghai      M
## 2621                                                                    
## 2622                                                CyberConnect2      T
## 2623                                    Camelot Software Planning   E10+
## 2624                                                    EA Canada      M
## 2625                                                                    
## 2626                                                     Techland      M
## 2627                                                    EA Sports      E
## 2628                                                                    
## 2629                                                    LucasArts   E10+
## 2630                                          Jupiter Corporation      T
## 2631                                                     5TH Cell      E
## 2632                                                Firaxis Games   E10+
## 2633                                  Kush Games, Visual Concepts      E
## 2634                                                                    
## 2635                                                                    
## 2636                               Eurocom Entertainment Software      T
## 2637                                                                    
## 2638                               Eurocom Entertainment Software      T
## 2639                                                                    
## 2640                                           UBlart Montpellier   E10+
## 2641                                                                    
## 2642                                             Gearbox Software      M
## 2643                                                         iNiS      T
## 2644                                                                    
## 2645                                                                    
## 2646                                                                    
## 2647                                                PlatinumGames      M
## 2648                                                     EA Games      E
## 2649                                                    Rare Ltd.      M
## 2650                                        EA Canada, Nihilistic      T
## 2651                                                                    
## 2652                                                 Eden Studios      E
## 2653                                                      Ubisoft   E10+
## 2654                                                                    
## 2655                                                    Slant Six      M
## 2656                                                          THQ      E
## 2657                                                                    
## 2658                                                      Team 17   E10+
## 2659                                                      Ubisoft      E
## 2660                                                                    
## 2661                                                                    
## 2662                                  David A. Palmer Productions      E
## 2663                  Artificial Mind and Movement, Polygon Magic      T
## 2664                                                                    
## 2665                                                       Capcom      T
## 2666                                                    Rare Ltd.      E
## 2667                                       Acclaim Studios Austin      E
## 2668                                                   SquareSoft      T
## 2669                                                     Ambrella      E
## 2670                                                        Spike      T
## 2671                                               Incognito Inc.      T
## 2672                                                     Nintendo      E
## 2673                                                   Sonic Team   E10+
## 2674                                           Sand Grain Studios      T
## 2675                                                                    
## 2676                                           Tetris Online, Inc      E
## 2677                                                                    
## 2678                                                                    
## 2679                                                 Dancing Dots      E
## 2680                                      Reflections Interactive      M
## 2681                                                                    
## 2682                                                                    
## 2683                                                                    
## 2684                                                                    
## 2685                                                         KCET      E
## 2686                                                Piranha Games      T
## 2687                                                     Nintendo      T
## 2688                                                PlatinumGames      M
## 2689                                         Savage Entertainment      T
## 2690                                                                    
## 2691                                                                    
## 2692                                                                    
## 2693                                                                    
## 2694                                                                    
## 2695                                                                    
## 2696                                                    Sony Bend      M
## 2697                                                    EA Sports      E
## 2698                                                     EA Games      T
## 2699                                                       Midway      M
## 2700                                            Vicarious Visions      E
## 2701                                         Exient Entertainment      T
## 2702                                                                    
## 2703                                                                    
## 2704                                               Valve Software   E10+
## 2705                                  Gearbox Software, 3D Realms      M
## 2706                                    LucasArts, Red Fly Studio      T
## 2707                                                                    
## 2708                                                                    
## 2709                                                                    
## 2710                                                                    
## 2711                                                                    
## 2712                                                                    
## 2713                                              EA Bright Light   E10+
## 2714                                                 Asobo Studio      E
## 2715                                                      Level 5   E10+
## 2716                                                                    
## 2717                                                       Capcom      E
## 2718                                                                    
## 2719                                        Respawn Entertainment      M
## 2720                                                Game Republic      T
## 2721                         Kojima Productions, Moby Dick Studio      M
## 2722                                           Rockstar San Diego      E
## 2723                                          Planet Moon Studios      E
## 2724                                               Creatures Inc.      E
## 2725                                               FreeStyleGames      T
## 2726                                                       Yuke's      T
## 2727                                                     TT Games   E10+
## 2728                                                 Project Soul      T
## 2729                                              Edge of Reality      E
## 2730                                                                    
## 2731                                                         KCEJ      M
## 2732                                                                    
## 2733                                                                    
## 2734                                                    Kouyousha      T
## 2735                                                       Konami      E
## 2736                                      Neversoft Entertainment      T
## 2737                                                   EA Tiburon      E
## 2738                                                                    
## 2739                                                      Ubisoft   E10+
## 2740                                                       Capcom      T
## 2741                                                    EA Canada      E
## 2742                                             Propaganda Games      M
## 2743                                                                    
## 2744                                                       Konami      T
## 2745                                                  Square Enix   E10+
## 2746                                                                    
## 2747                                                                    
## 2748                                             Pandemic Studios      T
## 2749                                      Neversoft Entertainment   E10+
## 2750                                              Criterion Games      E
## 2751                                          Jupiter Corporation      E
## 2752                                                                    
## 2753                                                                    
## 2754                                            EA Redwood Shores      M
## 2755                                            JGI Entertainment      M
## 2756                                              EA Bright Light      E
## 2757                                                From Software      T
## 2758                                                 Sumo Digital      E
## 2759                                             Ubisoft Montreal      M
## 2760                                                                    
## 2761                                        Radical Entertainment      M
## 2762                                           Rockstar San Diego   E10+
## 2763                                                       Capcom      M
## 2764                                             Ubisoft Montreal      T
## 2765                                                                    
## 2766                                           Stormfront Studios      E
## 2767                                                                    
## 2768                                                Volition Inc.      M
## 2769                                                                    
## 2770                                                                    
## 2771                                                 Project Aces      T
## 2772                                                                    
## 2773                                             Digital Extremes      M
## 2774                                                                    
## 2775                                                     TT Games   E10+
## 2776                                                       Crytek      M
## 2777                                           Bandai Namco Games      T
## 2778                                       SCEA San Diego Studios      E
## 2779                                                     TT Games   E10+
## 2780                                                         TOSE      E
## 2781                                              Visual Concepts      E
## 2782                                                Brownie Brown      E
## 2783                                      EA Sports, EA Vancouver      E
## 2784                                            Vicarious Visions      T
## 2785                                                      BioWare      M
## 2786                                                      Tri-Ace      T
## 2787                                          Amaze Entertainment      E
## 2788                               Eurocom Entertainment Software      T
## 2789                                                                    
## 2790                                                                    
## 2791                                                                    
## 2792                                                                    
## 2793                                                 EA Salt Lake      E
## 2794                                                     Nintendo      E
## 2795                                                      Natsume      E
## 2796                                                                    
## 2797                                                                    
## 2798                                                                    
## 2799                                                       Yuke's      T
## 2800                                                   syn Sophia      E
## 2801                                                                    
## 2802                                                  Square Enix      T
## 2803                                                                    
## 2804                                         Oddworld Inhabitants      T
## 2805                                             Arc System Works      T
## 2806                                                                    
## 2807                                                Splash Damage      T
## 2808                                              Electronic Arts   E10+
## 2809                                                    EA Sports      E
## 2810                                                                    
## 2811                                             Pandemic Studios      M
## 2812                                                     TT Games   E10+
## 2813                                                        Namco      E
## 2814                                                      Ubisoft   E10+
## 2815                                                       Takara      E
## 2816                                            Traveller's Tales   E10+
## 2817                                        CyberConnect2, Racjin      T
## 2818                                                     Dearsoft      E
## 2819                                              Electronic Arts      T
## 2820                                                         TOSE      E
## 2821                                                      Ubisoft   E10+
## 2822                                                     Treyarch      T
## 2823                                              Electronic Arts      E
## 2824                                                      Ubisoft      E
## 2825                                                                    
## 2826                                                                    
## 2827                                          Ubisoft Montpellier      E
## 2828                                                                    
## 2829                                                                    
## 2830                                            Creative Assembly      T
## 2831                                                    EA Canada      E
## 2832                                         Square Enix, Tri-Ace      T
## 2833                                                        Namco      M
## 2834                                 Artificial Mind and Movement      T
## 2835                                            EA Redwood Shores      E
## 2836                                                          THQ      E
## 2837                                                                    
## 2838                                                   Kush Games      E
## 2839                                                                    
## 2840                                                        Atlus      M
## 2841                                       SCEA San Diego Studios      E
## 2842                                          Paradox Development      T
## 2843                                                     HAL Labs      E
## 2844                                                                    
## 2845                                                                    
## 2846                                                   EA Tiburon      E
## 2847                                       SCEA San Diego Studios      E
## 2848                                                 2K Australia      M
## 2849                                                                    
## 2850                                                   EA Tiburon      E
## 2851                                                  Realism Ltd      E
## 2852                                        CD Projekt Red Studio      M
## 2853                                                  Codemasters      E
## 2854                                                       Bandai      T
## 2855                                                         SCEA      E
## 2856                                              Rainbow Studios      E
## 2857                                            Bizarre Creations   E10+
## 2858                                                                    
## 2859                                                                    
## 2860                                                      EA DICE      M
## 2861                                                  Codemasters      T
## 2862                                           Stormfront Studios      T
## 2863                                                   EA Tiburon      E
## 2864                                                 EA Black Box      T
## 2865                                                   Human Soft      E
## 2866                                                Firaxis Games      M
## 2867                                        High Voltage Software   E10+
## 2868                                                         Sega      T
## 2869                                                       Crytek      M
## 2870                                                       Capcom      M
## 2871                                                     Full Fat      E
## 2872                                           Jester Interactive      E
## 2873                                     Pipeworks Software, Inc.      T
## 2874                                                      Acclaim      E
## 2875                                                                    
## 2876                                                         KCET      M
## 2877                                                                    
## 2878                                                     Equinoxe      E
## 2879                                                       Altron      E
## 2880                                  Pacific Coast Power & Light      E
## 2881                                                   EA Tiburon      E
## 2882                                                                    
## 2883                                                                    
## 2884                                                                    
## 2885                                                                    
## 2886                                                   EA Tiburon      E
## 2887                                                                    
## 2888                                                    EA Canada      E
## 2889                                                                    
## 2890                                            Dimps Corporation      T
## 2891                                            Koei, Omega Force      T
## 2892                                                                    
## 2893                                                                    
## 2894                                                   EA Tiburon      E
## 2895                                  id Software, Nerve Software      M
## 2896                                                    EA Canada      E
## 2897                               Eighting, Genius Sonority Inc.      T
## 2898                                                 Reality Pump      M
## 2899                                      Neversoft Entertainment      T
## 2900                                            Vicarious Visions      T
## 2901                                                                    
## 2902                                                    EA Sports      E
## 2903                                                                    
## 2904                                                 Toys for Bob   E10+
## 2905                                                    LucasArts      T
## 2906                                                       Capcom      T
## 2907                                                        Namco      T
## 2908                                                        Atlus      M
## 2909                                                   EA Tiburon      E
## 2910                                                   Virtucraft      E
## 2911                                              Rainbow Studios      E
## 2912                                                                    
## 2913                                                      BioWare      M
## 2914                                                      Tri-Ace      T
## 2915                                                    EA Sports      E
## 2916                                                                    
## 2917                                                                    
## 2918                                                     TT Games   E10+
## 2919                                              Electronic Arts   E10+
## 2920                                          Intelligent Systems      E
## 2921                                                    EA Sports      E
## 2922                                                                    
## 2923                                                       Yuke's      T
## 2924                                           Illusion Softworks      M
## 2925                                                      n-Space      E
## 2926                                                   SCEA, Sims      E
## 2927                                                       Bandai      T
## 2928                                       SCEA San Diego Studios      E
## 2929                                          Free Radical Design      T
## 2930                                                      Kalypso      T
## 2931                                          Ubisoft Reflections      T
## 2932                                                     Nintendo      E
## 2933                                                                    
## 2934                                 Artificial Mind and Movement      E
## 2935                                            Bizarre Creations      T
## 2936                                                                    
## 2937                                                                    
## 2938                                                                    
## 2939                                           Kojima Productions      T
## 2940                                                    TT Fusion   E10+
## 2941                                                                    
## 2942                                              Bungie Software      M
## 2943                                 Midway Studios - Los Angeles      M
## 2944                                                                    
## 2945                                                                    
## 2946                                              Electronic Arts      E
## 2947                                                     TT Games   E10+
## 2948                                                Ubisoft Milan      T
## 2949                                              Rainbow Studios      E
## 2950                                           Fuse Games Limited      E
## 2951                                                                    
## 2952                                                                    
## 2953                                                      Pyramid      T
## 2954                                                                    
## 2955                                                                    
## 2956                                                       PopCap   E10+
## 2957                                                  Ghost Games   E10+
## 2958                                                     Full Fat      E
## 2959                               Eurocom Entertainment Software      E
## 2960                                             Ubisoft Montreal      T
## 2961                                                                    
## 2962                                         Hypnos Entertainment      T
## 2963                                              The Sims Studio      T
## 2964                                                     TT Games   E10+
## 2965                                                     2K Czech      E
## 2966                                                                    
## 2967                                           Black Isle Studios      T
## 2968                                            Vicarious Visions      E
## 2969                                         Gaijin Entertainment      T
## 2970                                                         Eden      T
## 2971                                                                    
## 2972                                              Blue Fang Games      E
## 2973                                              Electronic Arts      E
## 2974                                                                    
## 2975                                              Rainbow Studios      E
## 2976                                                  Square Enix      M
## 2977                                                    EA Sports      E
## 2978                                                                    
## 2979                                                Sanzaru Games   E10+
## 2980                                             Tomy Corporation      T
## 2981                                                    Rebellion      M
## 2982                                             Ubisoft Montreal      M
## 2983                                                    Clap Hanz      E
## 2984                                                                    
## 2985                                                                    
## 2986                                                       Konami      T
## 2987                                                 Secret Level      T
## 2988                                                    EA Canada      E
## 2989                                                    EA Sports      T
## 2990                                                                    
## 2991                                                CyberConnect2      T
## 2992                                                 MachineGames      M
## 2993                                              Rainbow Studios      E
## 2994                                                    TT Fusion   E10+
## 2995                                       Backbone Entertainment      M
## 2996                                                     HAL Labs   E10+
## 2997                                               Nerve Software      M
## 2998                                                 Trion Worlds      T
## 2999                                                     Treyarch      T
## 3000                                                                    
## 3001                                    BioWare, Demiurge Studios      M
## 3002                                                                    
## 3003                                                                    
## 3004                                                                    
## 3005                                                                    
## 3006                                                                    
## 3007                                              Tango Gameworks      M
## 3008                                                From Software      T
## 3009                                                    LucasArts      T
## 3010                                                                    
## 3011                                                                    
## 3012                                                     TT Games   E10+
## 3013                                             Propaganda Games      M
## 3014                                                                    
## 3015                                              Engine Software      T
## 3016                                                Ubisoft Paris      T
## 3017                                                                    
## 3018                                                                    
## 3019                                                                    
## 3020                                                                    
## 3021                                                   Epic Games      M
## 3022                                                                    
## 3023                                   RED Entertainment, Artdink      E
## 3024                                         Exient Entertainment      E
## 3025                                          Amaze Entertainment      E
## 3026                                                                    
## 3027                                                                    
## 3028                                                                    
## 3029                                         Cunning Developments      E
## 3030                                                   EA Tiburon      E
## 3031                                                  Square Enix   E10+
## 3032                                               Now Production      E
## 3033                                                      Ubisoft      T
## 3034                                                       Yuke's      T
## 3035                                                 Toys for Bob   E10+
## 3036                                                  Codemasters      E
## 3037                                              Page 44 Studios      T
## 3038                                                   Starbreeze      M
## 3039                                        High Voltage Software   E10+
## 3040                                                   989 Sports      E
## 3041                                                                    
## 3042                                              The Sims Studio      T
## 3043                                                                    
## 3044                              Delphine Software International      T
## 3045                                                         NuFX      E
## 3046                                                                    
## 3047                                            Traveller's Tales      E
## 3048                                        Frontier Developments   E10+
## 3049                                                   Activision      E
## 3050                                                                    
## 3051                                                 Toys for Bob   E10+
## 3052                                                Mercury Steam      M
## 3053                                                                    
## 3054                                                    EA Canada   E10+
## 3055                                         Genius Sonority Inc.       
## 3056                                                                    
## 3057                                                     Gameloft      T
## 3058                                                                    
## 3059                                              Gorilla Systems      E
## 3060                                                       Capcom      T
## 3061                                                                    
## 3062                                              Electronic Arts   E10+
## 3063                                            Creative Assembly      T
## 3064                                                                    
## 3065                                                   EA Tiburon      E
## 3066                                          Ubisoft Montpellier   E10+
## 3067                                                        Maxis      T
## 3068                                             Irrational Games      M
## 3069                                                                    
## 3070                                             Locomotive Games      E
## 3071                                      Grasshopper Manufacture      M
## 3072                                             Ubisoft Shanghai      T
## 3073                                                         TOSE      E
## 3074                                                         KCET      T
## 3075                                    Shift, Bandai Namco Games      T
## 3076                                            Koei, Omega Force      M
## 3077                                                       PopCap   E10+
## 3078                                 Artificial Mind and Movement      E
## 3079                                                  Omega Force      T
## 3080                                                                    
## 3081                                             Gearbox Software      M
## 3082                                            Traveller's Tales   E10+
## 3083                                                                    
## 3084                                                                    
## 3085                                                     TT Games   E10+
## 3086                                                         Xpec   E10+
## 3087                          Dimps Corporation, SCE Japan Studio      T
## 3088                                                                    
## 3089                                                                    
## 3090                                                                    
## 3091                                             Ubisoft Montreal      T
## 3092                                                      Tri-Ace      T
## 3093                                          Blitz Games Studios      E
## 3094                                                                    
## 3095                                             Amusement Vision      T
## 3096                                           Avalanche Software   E10+
## 3097                              Krome Studios, Screenlife Games      T
## 3098                                                       Artoon      E
## 3099                                                      Ubisoft      T
## 3100                                                                    
## 3101                                                   EA Tiburon      E
## 3102                                                                    
## 3103                                          NetherRealm Studios      M
## 3104                                                                    
## 3105                                                   EA Tiburon      E
## 3106                                          Intelligent Systems      E
## 3107                                                        Suzak   E10+
## 3108                                                                    
## 3109                                           Mistwalker, Artoon      T
## 3110                                                   Cavia Inc.      M
## 3111                                                                    
## 3112                                                                    
## 3113                                            Snowblind Studios      T
## 3114                                              Electronic Arts   E10+
## 3115                                                                    
## 3116                                                                    
## 3117                                                                    
## 3118                                              Rainbow Studios      E
## 3119                                                                    
## 3120                                                   EA Tiburon      E
## 3121                                                     Treyarch      T
## 3122                                                                    
## 3123                                           Heavy Iron Studios      E
## 3124                                              Giants Software      E
## 3125                                         Cooking Mama Limited      E
## 3126                                                                    
## 3127                                                                    
## 3128                                          Iron Galaxy Studios      M
## 3129                                              EA Bright Light   E10+
## 3130                                            Vicarious Visions      E
## 3131                                                      Ubisoft      M
## 3132                                         Exient Entertainment      T
## 3133                               Eurocom Entertainment Software      E
## 3134                                            Traveller's Tales      E
## 3135                                                     TT Games   E10+
## 3136                                         Remedy Entertainment      M
## 3137                         Kojima Productions, Moby Dick Studio      M
## 3138                                                     5TH Cell      E
## 3139                                                        EA LA      T
## 3140                                                       Yuke's      T
## 3141                                                                    
## 3142                                                         TOSE      T
## 3143                                            EA Redwood Shores      T
## 3144                                                     GenePool      T
## 3145                                                    EA Canada      E
## 3146                                                                    
## 3147                                                                    
## 3148                                                                    
## 3149                                                                    
## 3150                                           Ubisoft Casablanca      E
## 3151                                           Sports Interactive      E
## 3152                                                                    
## 3153                                          Free Radical Design      T
## 3154                                                       Capcom      M
## 3155                                                       Capcom      T
## 3156                                       Paradigm Entertainment      T
## 3157                                            Epicenter Studios   E10+
## 3158                                               Arkane Studios      M
## 3159                                                       Altron      E
## 3160                                                                    
## 3161                                                         KCEA      E
## 3162                             Ubisoft Reflections, Ivory Tower      T
## 3163                                                        Spike      T
## 3164                                                                    
## 3165                                                                    
## 3166                                                                    
## 3167                                              Electronic Arts   E10+
## 3168                                                   Team Ninja      M
## 3169                                          Turtle Rock Studios      M
## 3170                                                     Adrenium      E
## 3171                                                       Capcom      T
## 3172                                               Raven Software      T
## 3173                                                                    
## 3174                                                 Sumo Digital      E
## 3175                                           SCEE London Studio      T
## 3176                                            Traveller's Tales   E10+
## 3177                                   Disney Interactive Studios      E
## 3178                                                                    
## 3179                                       Backbone Entertainment      T
## 3180                                                      BioWare      M
## 3181                                                     Treyarch      T
## 3182                                                    EA Canada      E
## 3183                                                                    
## 3184                                                    EA Canada      E
## 3185                                                                    
## 3186                                             Pandemic Studios      T
## 3187                                             Ubisoft Montreal      M
## 3188                                                                    
## 3189                                                    EA Sports      E
## 3190                                                                    
## 3191                                                                    
## 3192                                                                    
## 3193                                 Artificial Mind and Movement      T
## 3194                                                      Level 5      T
## 3195                                                                    
## 3196                                                  Juice Games      T
## 3197                                  id Software, Raven Software      M
## 3198                                             Terminal Reality      M
## 3199                                              The Sims Studio      T
## 3200                                             SCE Japan Studio      E
## 3201                                                                    
## 3202                                                                    
## 3203                                           SEGA Racing Studio      E
## 3204                                                    Atlus Co.      M
## 3205                                                    EA Sports      E
## 3206                                         Exient Entertainment      E
## 3207                                                                    
## 3208                                         Monolith Productions      M
## 3209                                                Clover Studio      T
## 3210                                                        Atlus      M
## 3211                                         SuperVillain Studios   E10+
## 3212                                              Page 44 Studios      E
## 3213                                                       Crytek      M
## 3214                                            Traveller's Tales      E
## 3215                                         EA Sports, EA Canada   E10+
## 3216                                                   Mass Media      E
## 3217                                                                    
## 3218                                                    MagicWand      T
## 3219                                      Neversoft Entertainment      T
## 3220                                             Terminal Reality      T
## 3221                                                Firaxis Games      M
## 3222                                                                    
## 3223                                                                    
## 3224                                                         KCEJ      M
## 3225                                      Neversoft Entertainment      T
## 3226                                                                    
## 3227                                       Media Vision, Contrail      T
## 3228                                                                    
## 3229                                                   Ludia Inc.      E
## 3230                                                   EA Tiburon      E
## 3231                                                     TT Games   E10+
## 3232                                                                    
## 3233                                                    EA Sports      E
## 3234                                                         Eden      T
## 3235                                           Avalanche Software      E
## 3236                                                      Ubisoft   E10+
## 3237                                            Traveller's Tales   E10+
## 3238                                             Paon Corporation      E
## 3239                                             Griptonite Games      E
## 3240                                                                    
## 3241                                                Clover Studio      T
## 3242                                             Griptonite Games      E
## 3243                                                                    
## 3244                                      Neversoft Entertainment      T
## 3245                                                 Toys for Bob      E
## 3246                                               Lab Rats Games      E
## 3247                                                                    
## 3248                                                Ubisoft Paris      T
## 3249                                                                    
## 3250                                   Acclaim Studios Cheltenham      T
## 3251                                                    Hangar 13      M
## 3252                                                                    
## 3253                                                                    
## 3254                                                                    
## 3255                                                                    
## 3256                                                                    
## 3257                                             Ubisoft Montreal      T
## 3258                                                  Omega Force      T
## 3259                                             Core Design Ltd.      T
## 3260                                               FreeStyleGames      T
## 3261                                                                    
## 3262                                                                    
## 3263                                                                    
## 3264                                                                    
## 3265                                              Electronic Arts      E
## 3266                                               Ubisoft Quebec   E10+
## 3267                                           Heavy Iron Studios      E
## 3268                                                                    
## 3269                                                                    
## 3270                                              EA Bright Light      E
## 3271                                                   Cavia Inc.      M
## 3272                                                    EA Canada      E
## 3273                                                                    
## 3274                                              Visual Concepts      E
## 3275                                                          THQ      E
## 3276                                                                    
## 3277                                       Microsoft Game Studios      E
## 3278                                                  Omega Force      T
## 3279                                 Artificial Mind and Movement      M
## 3280                                         Cooking Mama Limited      E
## 3281                                                     5TH Cell   E10+
## 3282                                               Ubisoft Quebec      T
## 3283                                                                    
## 3284                                          Intelligent Systems   E10+
## 3285                                                       PopCap   E10+
## 3286                                                Retro Studios      T
## 3287                                                Vicious Cycle      T
## 3288                                                   Cinegroupe      E
## 3289                               Eurocom Entertainment Software   E10+
## 3290                                          Intelligent Systems   E10+
## 3291                                            High Impact Games   E10+
## 3292                                        Skyworks Technologies      E
## 3293                                                        Namco      T
## 3294                                                       Yuke's      T
## 3295                                                PlatinumGames      M
## 3296                                                                    
## 3297                                               Media Molecule      E
## 3298                                                                    
## 3299                                               Valve Software      M
## 3300                                                                    
## 3301                                                     Robomodo   E10+
## 3302                                                 2K Australia      M
## 3303                                                   Kush Games      E
## 3304            Ascaron Entertainment GmbH, Ascaron Entertainment      M
## 3305                                                       Konami      E
## 3306                                                    2K Sports      E
## 3307                                                         TOSE   E10+
## 3308                                                        Spike      T
## 3309                                                       BudCat      E
## 3310                                                                    
## 3311                                                                    
## 3312                                                Magic Pockets      E
## 3313                                                                    
## 3314                                         Webfoot Technologies      E
## 3315                                                    EA Sports      E
## 3316                                            Vicarious Visions      E
## 3317                                                                    
## 3318                                                                    
## 3319                                                     EA Games      E
## 3320                                                CyberConnect2      T
## 3321                                                         TOSE   E10+
## 3322                                                     FUN Labs      T
## 3323                                            Vicarious Visions      E
## 3324                                                                    
## 3325                                        Skyworks Technologies      E
## 3326                                              Blue Fang Games      E
## 3327                                                   Sonic Team   E10+
## 3328                                                     Nintendo      E
## 3329                                             Gearbox Software      M
## 3330                                          Paradox Development      M
## 3331                                        Ryu ga Gotoku Studios      M
## 3332                                                    EA Sports      T
## 3333                                                                    
## 3334                                                     Techland      M
## 3335                                                      Ubisoft   E10+
## 3336                                       Microsoft Game Studios   E10+
## 3337                                              Visual Concepts      E
## 3338                                                  Omega Force      T
## 3339                                                                    
## 3340                                           Avalanche Software   E10+
## 3341                                                Sanzaru Games   E10+
## 3342                                                     Techland      M
## 3343                                                      Ubisoft      T
## 3344                                                      Ubisoft      E
## 3345                                        Appaloosa Interactive      M
## 3346                                                                    
## 3347                                             Gearbox Software      M
## 3348                                                                    
## 3349                                                                    
## 3350                                           Monster Games Inc.      E
## 3351                                            Black Rock Studio   E10+
## 3352                                 Artificial Mind and Movement   E10+
## 3353                                          Shiny Entertainment   E10+
## 3354                                                                    
## 3355                                                                    
## 3356                                                                    
## 3357                                                  Vanillaware      T
## 3358                                                                    
## 3359                                                                    
## 3360                                                                    
## 3361                                              Electronic Arts      E
## 3362                                                Ready at Dawn      T
## 3363                                                                    
## 3364                                                     TT Games   E10+
## 3365                                                                    
## 3366                                                       Yuke's      T
## 3367                                                      Ubisoft   E10+
## 3368                                                                    
## 3369                                                      Endemol      E
## 3370                                                                    
## 3371                                                    EA Sports   E10+
## 3372                                            Creative Assembly      T
## 3373                                                   Kush Games      E
## 3374                                                                    
## 3375                                                                    
## 3376                                                      BioWare      M
## 3377                                                    Aki Corp.      E
## 3378                                              Cat Daddy Games      E
## 3379                                                 Climax Group      E
## 3380                                              Electronic Arts      E
## 3381                                                                    
## 3382                                                    EA Sports      E
## 3383                                                                    
## 3384                                              EA Bright Light      E
## 3385                                                     Robomodo   E10+
## 3386                                                                    
## 3387                                                                    
## 3388                                             Dreamworks Games      T
## 3389                                            EA Redwood Shores      M
## 3390                                                       Midway      E
## 3391                                                                    
## 3392                                       Harmonix Music Systems      T
## 3393                                              Electronic Arts   E10+
## 3394                                        Ryu ga Gotoku Studios      M
## 3395                                                                    
## 3396                                                    EA Sports      E
## 3397                                                    EA Sports      E
## 3398                                            Traveller's Tales      E
## 3399                                                                    
## 3400                                                                    
## 3401                                                                    
## 3402                                                       Yuke's      T
## 3403                                                                    
## 3404                                                                    
## 3405                                             Ubisoft Montreal      M
## 3406                                                                    
## 3407                                                   Team Ninja      M
## 3408                                                                    
## 3409                                                 Climax Group      M
## 3410                                   Disney Interactive Studios      E
## 3411                                            Bizarre Creations   E10+
## 3412                                                                    
## 3413                                                                    
## 3414                                                   EA Tiburon      E
## 3415                                                     Gameloft      E
## 3416                                  Atomic Planet Entertainment      E
## 3417                                           Kojima Productions      M
## 3418                                                         TOSE      E
## 3419                                                                    
## 3420                                             Monkey Bar Games   E10+
## 3421                                             Ubisoft Montreal      T
## 3422                                                                    
## 3423                                          Intelligent Systems      E
## 3424                                 Artificial Mind and Movement      T
## 3425                                         Coldwood Interactive      T
## 3426                                           Valuewave Co.,Ltd.      E
## 3427                                              Nixxes Software      M
## 3428                                            Incinerator Games      E
## 3429                                                         TOSE   E10+
## 3430                                            Traveller's Tales   E10+
## 3431                                                 Project Soul      T
## 3432                                                                    
## 3433                                                                    
## 3434                                                                    
## 3435                                                  Square Enix   E10+
## 3436                                             Ubisoft Montreal      T
## 3437                                              Pam Development      E
## 3438                                             Farsight Studios      E
## 3439                                                     EA Games      T
## 3440                                                      n-Space      T
## 3441                                                                    
## 3442                                                   EA Tiburon      E
## 3443                                                                    
## 3444                                       SCEA San Diego Studios      E
## 3445                                                                    
## 3446                                                                    
## 3447                                                 Asobo Studio      E
## 3448                                                                    
## 3449                                            Vicarious Visions   E10+
## 3450                                      Black Ops Entertainment      T
## 3451                                                       Beenox      T
## 3452                                              Ubisoft Romania      T
## 3453                                                  Spicy Horse      M
## 3454                                                        Atlus      M
## 3455                                  Kush Games, Visual Concepts      E
## 3456                                                                    
## 3457                                                                    
## 3458                                                                    
## 3459                                              Electronic Arts   E10+
## 3460                                           Monster Games Inc.      E
## 3461                                                   Epic Games      M
## 3462                                                       Bandai      E
## 3463                                                                    
## 3464                                                      Ubisoft      M
## 3465                                                                    
## 3466                                                                    
## 3467                                                                    
## 3468                                         Exient Entertainment      E
## 3469                                                CyberConnect2      T
## 3470                                                         KCET      T
## 3471                                                                    
## 3472                                                                    
## 3473                                              Matrix Software   E10+
## 3474                                          Ubisoft Montpellier   E10+
## 3475                                                                    
## 3476                                              Electronic Arts      E
## 3477                                                      Acquire      M
## 3478                                      Neversoft Entertainment      T
## 3479                                                                    
## 3480                                                   Cavia Inc.      T
## 3481                                                    EA Canada   E10+
## 3482                                                   SquareSoft      M
## 3483                                                                    
## 3484                                              Electronic Arts      E
## 3485                                                       Konami      E
## 3486                                                                    
## 3487                                                    EA Sports      E
## 3488                                                   EA Tiburon      E
## 3489                                            High Impact Games   E10+
## 3490                                                                    
## 3491                                             Ubisoft Montreal      M
## 3492                                              EA Bright Light      E
## 3493                                            Vicarious Visions      E
## 3494                                                 Climax Group      E
## 3495                                                        Namco      T
## 3496                                            Overkill Software      M
## 3497                                                                    
## 3498                                      Midway Studios - Austin      T
## 3499                                            Vicarious Visions      E
## 3500                                                Firaxis Games      M
## 3501                                                      Ubisoft      E
## 3502                                                                    
## 3503                                             Monkey Bar Games   E10+
## 3504                                            Vicarious Visions   E10+
## 3505                                                   Activision      T
## 3506                                              The Sims Studio      T
## 3507                                                    EA Sports      E
## 3508                                                                    
## 3509                                        Respawn Entertainment      M
## 3510                                             Arc System Works      T
## 3511                                                                    
## 3512                                                 Secret Level      T
## 3513                                                CyberConnect2      T
## 3514                                                                    
## 3515                                                                    
## 3516                                                    EA Canada   E10+
## 3517                                     Pipeworks Software, Inc.      E
## 3518                                       Harmonix Music Systems      T
## 3519                                           Stormfront Studios      T
## 3520                                                  Omega Force      T
## 3521                                                   Activision      E
## 3522                                                                    
## 3523                                                       Yuke's      T
## 3524                                                                    
## 3525                                                    EA Canada      E
## 3526                                          Bunkasha Publishing      T
## 3527                                                                    
## 3528                                                 Trion Worlds      M
## 3529                                         Nippon Ichi Software      T
## 3530                                                      Natsume      E
## 3531                                           Heavy Iron Studios      E
## 3532                                                  id Software      M
## 3533                                                                    
## 3534                                                     Treyarch      T
## 3535                                                       Konami      E
## 3536                                        High Voltage Software      T
## 3537                                              EA Bright Light      E
## 3538                                                      Ubisoft   E10+
## 3539                               Eurocom Entertainment Software   E10+
## 3540                                            Digital Illusions      E
## 3541                                                       Capcom      M
## 3542                                              Pam Development      E
## 3543                                                                    
## 3544                                                Ubisoft Paris      M
## 3545                                             Crystal Dynamics      T
## 3546                                                          THQ      E
## 3547                                                    Neverland   E10+
## 3548                                               Silicon Studio   E10+
## 3549                                                 Asobo Studio   E10+
## 3550                                                       Capcom      T
## 3551                       Namco Bandai Games, Bandai Namco Games      T
## 3552                                                        Exakt      M
## 3553                                                 Vanilla Ware      T
## 3554                                                Magic Pockets      E
## 3555                                                                    
## 3556                                                     Full-Fat      E
## 3557                                                                    
## 3558                                        Respawn Entertainment      M
## 3559                                                   EA Tiburon   E10+
## 3560                                             Griptonite Games      T
## 3561                                                    Black Box      E
## 3562                                          Etranges Libellules   E10+
## 3563                                                     Nintendo      E
## 3564                                                        Maxis      T
## 3565                                                    EA Canada      E
## 3566                                 Artificial Mind and Movement      E
## 3567                                                        Relic      M
## 3568                                              Electronic Arts   E10+
## 3569                                              Pam Development      E
## 3570                                                                    
## 3571                                           Sand Grain Studios      T
## 3572                                                    TT Fusion   E10+
## 3573                                      Black Ops Entertainment      T
## 3574                                                                    
## 3575                                                      Ubisoft      E
## 3576                                            Digital Illusions      T
## 3577                                              Ubisoft Romania      T
## 3578                                       Acclaim Studios Austin      E
## 3579                                                                    
## 3580                                                                    
## 3581                                            Collision Studios      E
## 3582                                                    EA Canada      T
## 3583                                                                    
## 3584                                           Avalanche Software   E10+
## 3585                                                       Anchor      T
## 3586                                                                    
## 3587                                                                    
## 3588                                              Rockstar London      M
## 3589                                                       Racjin      T
## 3590                                              Page 44 Studios      T
## 3591                                                                    
## 3592                               Eurocom Entertainment Software      T
## 3593                                                          MTO      E
## 3594                                                                    
## 3595                                      Neversoft Entertainment      T
## 3596                                             Magenta Software      E
## 3597                                            Digital Illusions      E
## 3598                                  id Software, Raven Software      M
## 3599                                                                    
## 3600                                                       Artoon      E
## 3601                                              Visual Concepts      E
## 3602                                                                    
## 3603                                                   Kush Games      E
## 3604                                           Tetris Online, Inc      E
## 3605                                                                    
## 3606                                             SCE Japan Studio      T
## 3607                                         Remedy Entertainment      M
## 3608                                              Awesome Studios      E
## 3609                                             Ubisoft Montreal   E10+
## 3610                                        Behaviour Interactive      M
## 3611                                       Pipe Dream Interactive      M
## 3612                                                    EA Sports      E
## 3613                                                      Bullets   E10+
## 3614                                                 Kaos Studios      T
## 3615                                  Pacific Coast Power & Light      E
## 3616                                                    EA Sports      E
## 3617                                                    Game Arts      T
## 3618                                      Marvelous Entertainment      E
## 3619                                      Grasshopper Manufacture      M
## 3620                                                                    
## 3621                                                Ready at Dawn      M
## 3622                                        High Voltage Software      E
## 3623                                             Crystal Dynamics      M
## 3624                                                       Aspect      M
## 3625                                                                    
## 3626                                                 Ninja Theory      T
## 3627                                                                    
## 3628                                                       Anchor      T
## 3629                                                                    
## 3630                                                                    
## 3631                                               FreeStyleGames      T
## 3632                                                                    
## 3633                                                                    
## 3634                                                                    
## 3635                                                                    
## 3636                                              Powerhead Games      E
## 3637                                                   Deep Space      M
## 3638                                                      Ubisoft      T
## 3639                                                                    
## 3640                                                                    
## 3641                                                                    
## 3642                                                    Clap Hanz      E
## 3643                                      Neversoft Entertainment      T
## 3644                                                         Inti      E
## 3645                                            Bam Entertainment      T
## 3646                                                       Capcom      M
## 3647                                                                    
## 3648                                                                    
## 3649                                              Visual Concepts      E
## 3650                                           UBlart Montpellier   E10+
## 3651                                                                    
## 3652                                                                    
## 3653                                    Ubisoft, Ubisoft Montreal      M
## 3654                                   THQ Digital Studio Phoenix      E
## 3655                                                                    
## 3656                                               Luxoflux, Inc.      E
## 3657                                                   Brain Toys      E
## 3658                                             Ubisoft Montreal      M
## 3659                                                                    
## 3660                                                                    
## 3661                                                                    
## 3662                                                                    
## 3663                                           Avalanche Software      E
## 3664                                                                    
## 3665                                                         iNiS      T
## 3666                                                                    
## 3667                                                                    
## 3668                                                      Acclaim      M
## 3669                                                                    
## 3670                                                  Naughty Dog      T
## 3671                                                                    
## 3672                                           Hothouse Creations      E
## 3673                                                                    
## 3674                                                   Activision      E
## 3675                                           Rockstar San Diego      M
## 3676                                            Nuevo Retro Games      E
## 3677                                                    Rare Ltd.      E
## 3678                                                 Digital Kids      E
## 3679                                                   Activision      E
## 3680                                                Sanzaru Games   E10+
## 3681                                 Artificial Mind and Movement      T
## 3682                                                                    
## 3683                                                        Yager      M
## 3684                                           Heavy Iron Studios      E
## 3685                                              Electronic Arts   E10+
## 3686                                       Codemasters Birmingham      E
## 3687                                                                    
## 3688                                                                    
## 3689                                                       Yuke's      T
## 3690                                                          THQ      E
## 3691                                                 EA Salt Lake      E
## 3692                                                                    
## 3693                         Konami Computer Entertainment Hawaii      E
## 3694                                        Radical Entertainment   E10+
## 3695                                                  Square Enix      T
## 3696                                                                    
## 3697                                           UBlart Montpellier   E10+
## 3698                                                                    
## 3699                                                Day 1 Studios      M
## 3700                                                 Ninja Theory      T
## 3701                                                                    
## 3702                                            Dimps Corporation      T
## 3703                                              Electronic Arts      E
## 3704                                Omega Force, Koei Tecmo Games      T
## 3705                                                    Aki Corp.      M
## 3706                                                                    
## 3707                                                                    
## 3708                                                                    
## 3709                                                                    
## 3710                                                                    
## 3711                                                     Robomodo      E
## 3712                                                    EA Sports      E
## 3713                                                    EA Canada      E
## 3714                                                     4A Games      M
## 3715                                                                    
## 3716                                          Intelligent Systems      T
## 3717                                                                    
## 3718                                                         Cing      T
## 3719                                                       Racjin   E10+
## 3720                                                                    
## 3721                                                       Altron      E
## 3722                                                EA Sports Big      E
## 3723                                                          WXP      T
## 3724                                                                    
## 3725                                              Visual Concepts      E
## 3726                                                        Spike      T
## 3727            Ascaron Entertainment GmbH, Ascaron Entertainment      M
## 3728                                                 Reality Pump      M
## 3729                                              Edge of Reality   E10+
## 3730                                                  Shaba Games      E
## 3731                                                       Altron      E
## 3732                                                Cerasus Media      E
## 3733                                                                    
## 3734                                              Electronic Arts   E10+
## 3735                                                                    
## 3736                                                 Digital Kids      E
## 3737                                     Inevitable Entertainment      E
## 3738                                               Incognito Inc.      T
## 3739                                              Electronic Arts      T
## 3740                                              Electronic Arts      E
## 3741                                        Radical Entertainment      T
## 3742                                            Nex Entertainment      T
## 3743                                                    Destineer      E
## 3744                                                                    
## 3745                                                        Namco      T
## 3746                                                                    
## 3747                                                                    
## 3748                                                    EA Canada      E
## 3749                                            Traveller's Tales   E10+
## 3750                                                         Sega      T
## 3751                                                                    
## 3752                                                          THQ      E
## 3753                                                     Eighting      T
## 3754                                                    Neverland      E
## 3755                                             Crystal Dynamics      M
## 3756                                                                    
## 3757                                                    EA Canada      E
## 3758                                                    Eutechnyx      T
## 3759                                                  Square Enix      T
## 3760                                                Pivotal Games      M
## 3761                                                  Vanillaware      T
## 3762                                                                    
## 3763                                                       Midway      E
## 3764                                                                    
## 3765                                                   EA Tiburon      E
## 3766                                                       Midway      M
## 3767                                             Rockstar Toronto      M
## 3768                                                      Ubisoft   E10+
## 3769                                                                    
## 3770                                                     TT Games   E10+
## 3771                                                                    
## 3772                                       Blizzard Entertainment      T
## 3773                                                                    
## 3774                                                      Virtuos      E
## 3775                                                                    
## 3776                                          Ubisoft Montpellier      T
## 3777                                              Criterion Games   E10+
## 3778                                                        EA LA      T
## 3779                                                Krome Studios      E
## 3780                                                          WXP      T
## 3781                                           SCEA Sports Studio      E
## 3782                                                                    
## 3783                                           Monster Games Inc.      E
## 3784                                                                    
## 3785                                                                    
## 3786                                                       Konami   E10+
## 3787                                                   Human Soft      E
## 3788                                               Raven Software      T
## 3789                                                                    
## 3790                                                   Keen Games   E10+
## 3791                                                                    
## 3792                                       Blizzard Entertainment      T
## 3793                                             Storm City Games      E
## 3794                                       SCEA San Diego Studios      E
## 3795                                                                    
## 3796                                                       Yuke's      T
## 3797                                                     ValuSoft      E
## 3798                                             Rockstar Toronto      T
## 3799                         High Voltage Software, Ubisoft Paris      T
## 3800                                            Incinerator Games      E
## 3801                                                         GRIN      T
## 3802                                             Griptonite Games   E10+
## 3803                                           Stormfront Studios      T
## 3804                                           Rocksteady Studios      T
## 3805                                                  Juice Games      T
## 3806                                             Rockstar Toronto      M
## 3807                                                                    
## 3808                                                      Q-Games   E10+
## 3809                                                      BioWare      M
## 3810                                                                    
## 3811                                                                    
## 3812                                                                    
## 3813                                   Epic Games, People Can Fly      M
## 3814                                                       Raster      M
## 3815                                    Camelot Software Planning      E
## 3816                                                     Vivarium      T
## 3817                                                     VU Games      E
## 3818                                           Namco Bandai Games      T
## 3819                                             Ubisoft Montreal   E10+
## 3820                                                                    
## 3821                                       Paradigm Entertainment      T
## 3822                                                                    
## 3823                                         Monolith Productions      M
## 3824                                                     ChunSoft      E
## 3825                                                          MTO      E
## 3826                                                    EA Sports      E
## 3827                                          Shiny Entertainment   E10+
## 3828                                                         TOSE      T
## 3829                                                 Sumo Digital      E
## 3830                                                    Sony Bend      M
## 3831                                                         KCEJ      M
## 3832                                           Bandai Namco Games      T
## 3833                                                    EA Canada      E
## 3834                                                    TT Fusion      E
## 3835                                                        Namco      E
## 3836                                      Double Fine Productions      E
## 3837                                                    EA Sports      E
## 3838                                               Machatin, Inc.   E10+
## 3839                                                   EA Tiburon      E
## 3840                                                Point of View      T
## 3841                                                     TT Games   E10+
## 3842                                                                    
## 3843                                                    EA Canada      E
## 3844                                                                    
## 3845                                                                    
## 3846                                                   EA Tiburon      E
## 3847                                           SCEE London Studio      T
## 3848                                                                    
## 3849                                    City Interactive, Deck 13      M
## 3850                                                     T&E Soft      E
## 3851                                                                    
## 3852                                             Crystal Dynamics      T
## 3853                                               Io Interactive      T
## 3854                                 Climax Group, Climax Studios      M
## 3855                                      Neversoft Entertainment      M
## 3856                                 Artificial Mind and Movement      E
## 3857                                                   EA Chicago      T
## 3858                                                Volition Inc.      M
## 3859                                                     HAL Labs      E
## 3860                                                                    
## 3861                                                                    
## 3862                                                    EA Canada      E
## 3863                                                                    
## 3864                                         Nippon Ichi Software      T
## 3865                                            Vicarious Visions      E
## 3866                                                      Acquire      M
## 3867                                                        Maxis      T
## 3868                                                    Neverland      E
## 3869                                             Griptonite Games      E
## 3870                                                                    
## 3871                                                                    
## 3872                                                                    
## 3873                                                                    
## 3874                                              Electronic Arts      E
## 3875                                                    EA Canada      E
## 3876                                                                    
## 3877                                                                    
## 3878                                                      Acquire      M
## 3879                                                    HexaDrive      M
## 3880                                                                    
## 3881                                               Luxoflux, Inc.   E10+
## 3882                                                      Ubisoft      E
## 3883                                          Blitz Games Studios      E
## 3884                                                                    
## 3885                                                   Mass Media      E
## 3886                      Jupiter Corporation, Jupiter Multimedia   E10+
## 3887                                                                    
## 3888                                            Blade Interactive      E
## 3889                                            Factor 5, SCE/WWS      T
## 3890                                                   EA Tiburon      E
## 3891                                                                    
## 3892                                                Volition Inc.      T
## 3893                                    SCE Japan Studio, comcept      M
## 3894                                                                    
## 3895                                                         WBIE      T
## 3896                                                                    
## 3897                                                    EA Sports      E
## 3898                                         Gaijin Entertainment      T
## 3899                                                      Ubisoft      E
## 3900                                             Terminal Reality      M
## 3901                                              Visual Concepts      E
## 3902                                          Etranges Libellules   E10+
## 3903                                           Heavy Iron Studios      E
## 3904                                                                    
## 3905                                                                    
## 3906                                                                    
## 3907                                                                    
## 3908                                                    EA Sports      E
## 3909                                 Artificial Mind and Movement   E10+
## 3910                                            Creative Assembly      M
## 3911                                                                    
## 3912                                                       Konami      E
## 3913                                              Digital Eclipse      E
## 3914                                                 8ing/Raizing      T
## 3915                                                        Namco      T
## 3916                                                      BioWare      M
## 3917                                                         Koei      T
## 3918                                                    EA Sports   E10+
## 3919                                           Bandai Namco Games      T
## 3920                                                                    
## 3921                                                        Spike      T
## 3922                                                CyberConnect2      T
## 3923                                                                    
## 3924                                                     Coresoft      E
## 3925                                            Blue Castle Games      E
## 3926                                                       Yuke's      T
## 3927                                                                    
## 3928                                             Arc System Works      T
## 3929                                                       Midway      E
## 3930                                                         KCET      M
## 3931                                                                    
## 3932                                              Digital Eclipse      T
## 3933                                                      Ubisoft      E
## 3934                                                                    
## 3935                                              Electronic Arts      E
## 3936                                                                    
## 3937                                             Pandemic Studios      M
## 3938                                         Tantalus Interactive      E
## 3939                                                   Sonic Team      E
## 3940                                                      Warthog      E
## 3941                                             Griptonite Games      E
## 3942                                                                    
## 3943                                                    EA Canada   E10+
## 3944                                             Rockstar Toronto      T
## 3945                                                       Yuke's      T
## 3946                                           Rockstar San Diego      T
## 3947                                                                    
## 3948                                            EA Redwood Shores      E
## 3949                                                 Asobo Studio      E
## 3950                                                    AWE Games   E10+
## 3951                                                                    
## 3952                                                  Blitz Games      T
## 3953                                   Disney Interactive Studios      E
## 3954                                                                    
## 3955                                               Io Interactive      M
## 3956                                                     Zoe Mode      E
## 3957                                                                    
## 3958                                             Ubisoft Montreal      T
## 3959                                        Radical Entertainment   E10+
## 3960                                     Contraband Entertainment      E
## 3961                                          Jupiter Corporation      E
## 3962                                                       Konami      E
## 3963                                                         TOSE      T
## 3964                                              Melbourne House   E10+
## 3965                                              EA Bright Light      E
## 3966                                           Zipper Interactive      T
## 3967                                                Eugen Systems      T
## 3968                                                  Indies Zero   E10+
## 3969                                                                    
## 3970                               Eurocom Entertainment Software      T
## 3971                                                                    
## 3972                                                                    
## 3973                                                    LucasArts      T
## 3974                                                        Quest      E
## 3975                                                                    
## 3976                                                                    
## 3977                                                   Cavia Inc.      E
## 3978                                                                    
## 3979                                                   Team Ninja      M
## 3980                                                Kuusou Kagaku      E
## 3981                                              Visual Concepts      E
## 3982                                                HandMade Game      E
## 3983                                                       Konami   E10+
## 3984                                              Criterion Games   E10+
## 3985                                                                    
## 3986                                                          THQ      E
## 3987                                                   EA Tiburon      E
## 3988                                                   EA Tiburon      E
## 3989                                                       Capcom      T
## 3990                                                    EA Canada      E
## 3991                                      Neversoft Entertainment      T
## 3992                                              Rainbow Studios      E
## 3993                                                                    
## 3994                                                  Shaba Games   E10+
## 3995                                              Digital Eclipse      E
## 3996                                                                    
## 3997                                                                    
## 3998                                 Artificial Mind and Movement      M
## 3999                                             Crystal Dynamics      T
## 4000                                                    7 Studios      T
## 4001                                              Melbourne House      T
## 4002                                                                    
## 4003                                                  Blue Tongue      E
## 4004                                                                    
## 4005                                                                    
## 4006                                                  Spicy Horse      M
## 4007                                                    EA Canada      E
## 4008                                            Vicarious Visions      E
## 4009                                           Namco Bandai Games      E
## 4010                                                     HAL Labs      E
## 4011                                                  Omega Force      T
## 4012                                            Incinerator Games      E
## 4013                                            Vicarious Visions      E
## 4014                                                         Sega      E
## 4015                                                 SCS Software       
## 4016                                                  Blitz Games      E
## 4017                                                                    
## 4018                                                  Codemasters      E
## 4019                                              Visual Concepts      E
## 4020                                                                    
## 4021                                      Neversoft Entertainment      T
## 4022                                         Cooking Mama Limited      E
## 4023                                                       Racjin      T
## 4024                                          Shiny Entertainment      T
## 4025                                             Arc System Works   E10+
## 4026                                            Dimps Corporation   E10+
## 4027                                                       Yuke's      T
## 4028                                                  EA Montreal   E10+
## 4029                                                   Ludia Inc.      E
## 4030                                                      Natsume      E
## 4031                                                        EA LA      T
## 4032                                          Intelligent Systems   E10+
## 4033                                              Edge of Reality      T
## 4034                                                       PopCap   E10+
## 4035                                                    Game Arts      T
## 4036                                                 Project Aces      T
## 4037                                                                    
## 4038                                                                    
## 4039                                        Radical Entertainment      M
## 4040                                                       Capcom      M
## 4041                                                                    
## 4042                                                   Activision      E
## 4043                                                      n-Space   E10+
## 4044                                                                    
## 4045                                                                    
## 4046                                                                    
## 4047                                                   WayForward      E
## 4048                                      Humongous Entertainment      E
## 4049                                                                    
## 4050                                        Behaviour Interactive      M
## 4051                                                  Blitz Games      E
## 4052                                             Headstrong Games      E
## 4053                                                                    
## 4054                                                                    
## 4055                                                                    
## 4056                                           Dice, Danger Close      M
## 4057                                                     Gameloft   E10+
## 4058                                                                    
## 4059                                                      Acclaim      T
## 4060                        Dimps Corporation, Namco Bandai Games      T
## 4061                                                Angel Studios      T
## 4062                                                        Namco      E
## 4063                                                                    
## 4064                                                                    
## 4065                                             City Interactive      M
## 4066                                                        Namco      T
## 4067                                                                    
## 4068                                                    EA Canada      E
## 4069                                                     Nintendo   E10+
## 4070                                               Silicon Studio      T
## 4071                                                 Eden Studios      M
## 4072                                                                    
## 4073                                                                    
## 4074                                          Amaze Entertainment   E10+
## 4075                                            Vicarious Visions      E
## 4076                                                   Pocketeers      E
## 4077                                                                    
## 4078                                             Ubisoft Montreal      M
## 4079                                                   EA Tiburon      E
## 4080                                                                    
## 4081                                                                    
## 4082                                                                    
## 4083               Harmonix Music Systems, Backbone Entertainment      T
## 4084                                             Scholastic, Inc.      E
## 4085                                                                    
## 4086                                                                    
## 4087                                            Vicarious Visions   E10+
## 4088                                                                    
## 4089                                                     Zoe Mode      E
## 4090                                                                    
## 4091                                        Screenlife Games, WXP      T
## 4092                                            Evolution Studios      T
## 4093                                             Digital Extremes      M
## 4094                                                                    
## 4095                                            EA Redwood Shores      E
## 4096                                                       PopCap   E10+
## 4097                                    Camelot Software Planning      E
## 4098                                                Totally Games      T
## 4099                                                                    
## 4100                                                                    
## 4101                                                   EA Tiburon      E
## 4102                                                  Blitz Games      E
## 4103                                          Amaze Entertainment      E
## 4104                                            Dimps Corporation      T
## 4105                           Ubisoft Paris, Ubisoft Montpellier   E10+
## 4106                                      Grasshopper Manufacture      M
## 4107                                                                    
## 4108                                                                    
## 4109                                             Pandemic Studios      M
## 4110                                                PlatinumGames      M
## 4111                                                                    
## 4112                                         Bullfrog Productions      E
## 4113                                                Piranha Games      E
## 4114                                               Now Production   E10+
## 4115                                                                    
## 4116                                                                    
## 4117                                                                    
## 4118                                         EA Sports, EA Canada   E10+
## 4119                                                Angel Studios      E
## 4120                                                    EA Sports      E
## 4121                                                Marvelous AQL      E
## 4122                                                    EA Canada      E
## 4123                                                 Asobo Studio      E
## 4124                                                                    
## 4125                                                Magic Pockets      E
## 4126                                                       Ratbag      E
## 4127                                            Nex Entertainment   E10+
## 4128                                                   Sonic Team   E10+
## 4129                                                         SCEJ      E
## 4130                                                                    
## 4131                                                                    
## 4132                                                                    
## 4133                                                                    
## 4134                                          Paradox Development      T
## 4135                                                                    
## 4136                                                                    
## 4137                                            Koei, Omega Force      T
## 4138                                                  id Software      M
## 4139                                          Etranges Libellules   E10+
## 4140                                            Vicarious Visions      T
## 4141                                                                    
## 4142                                       Harmonix Music Systems      T
## 4143                                                                    
## 4144                                            Bizarre Creations      T
## 4145                                                                    
## 4146                                                       Capcom      T
## 4147                                             Digital Extremes      M
## 4148                                             SCE Japan Studio      T
## 4149                                       Blizzard Entertainment      T
## 4150                                                   Razorworks      E
## 4151                                         Tantalus Interactive      E
## 4152                                                                    
## 4153                                                   Epic Games      M
## 4154                                              Electronic Arts      E
## 4155                                                          New      T
## 4156                                                                    
## 4157                                                      Tri-Ace      T
## 4158                                             Farsight Studios   E10+
## 4159                                                 Beyond Games      E
## 4160                                                     EA Games      E
## 4161                                                        Teyon      T
## 4162                                         Monolith Productions      M
## 4163                                                        Maxis      T
## 4164                                                       Midway      T
## 4165                                                                    
## 4166                                                                    
## 4167                                                                    
## 4168                                                                    
## 4169                                                                    
## 4170                                        Radical Entertainment   E10+
## 4171                                                    Rare Ltd.      E
## 4172                                          Blitz Games Studios      E
## 4173                                                                    
## 4174                                                       Midway      E
## 4175                                                                    
## 4176                                                    EA Canada   E10+
## 4177                                                  FASA Studio      M
## 4178                                                         Sega   E10+
## 4179                                                                    
## 4180                                                        Relic      M
## 4181                                                 Digital Kids      E
## 4182                       Ubisoft Barcelona, Ubisoft Reflections   E10+
## 4183                                                                    
## 4184                                                       Artoon      E
## 4185                                                                    
## 4186                                            Incinerator Games      E
## 4187                                               Incognito Inc.      T
## 4188               Eurocom Entertainment Software, Visceral Games      M
## 4189                                          Amaze Entertainment   E10+
## 4190                                 Climax Group, Climax Studios      M
## 4191                                                         TOSE      E
## 4192                                                                    
## 4193                                 Artificial Mind and Movement   E10+
## 4194                                                   Activision   E10+
## 4195                                                                    
## 4196                                                                    
## 4197                                                  Square Enix   E10+
## 4198                                                         Sega      M
## 4199                                                    EA Sports      T
## 4200                                                      Ubisoft   E10+
## 4201                                            Vicarious Visions   E10+
## 4202                                                   Team Ninja      M
## 4203                                     Pipeworks Software, Inc.      T
## 4204                                                       Hudson      E
## 4205                                              Silicon Knights      M
## 4206                                            EA Redwood Shores      E
## 4207                                   Nintendo, Headstrong Games      E
## 4208                                              Rainbow Studios      T
## 4209                                                       Konami      M
## 4210                                                  Omega Force      T
## 4211                                                      Shin'en      E
## 4212                                              Electronic Arts      E
## 4213                                                     Nintendo      E
## 4214                                                 Reality Pump      M
## 4215                                           Sports Interactive       
## 4216                                                                    
## 4217                                                                    
## 4218                                                                    
## 4219                                              Electronic Arts      E
## 4220                                                 ImaginEngine      E
## 4221                                                                    
## 4222                                                     EA Games   E10+
## 4223                                            EA Redwood Shores      T
## 4224                                                  Shaba Games      E
## 4225                                 Artificial Mind and Movement      E
## 4226                                                        Tecmo      T
## 4227                                                    Sony Bend      T
## 4228                                                                    
## 4229                                                         Koei      T
## 4230                                                                    
## 4231                                                    Creations      E
## 4232                                           Avalanche Software      E
## 4233                                           SCEE London Studio      T
## 4234                                             Gearbox Software      M
## 4235                                              Tango Gameworks      M
## 4236                                           Avalanche Software      T
## 4237                                                       Helixe      E
## 4238                                   THQ Digital Studio Phoenix      E
## 4239                                                                    
## 4240                                                                    
## 4241                                                                    
## 4242                                                                    
## 4243                                                    EA Sports      E
## 4244                                             Gearbox Software      M
## 4245                                          Etranges Libellules      E
## 4246                                                                    
## 4247                                                         SCEA      M
## 4248                                         Exient Entertainment   E10+
## 4249                                                                    
## 4250                                                                    
## 4251                                            Vicarious Visions      E
## 4252                                                        Crave      E
## 4253                                                     TT Games   E10+
## 4254                                                        Vatra      M
## 4255                                                                    
## 4256                                                       Yuke's      T
## 4257                                            High Impact Games   E10+
## 4258                                                                    
## 4259                                                                    
## 4260                                              The Sims Studio      T
## 4261                                               Luxoflux, Inc.      T
## 4262                                                                    
## 4263                                                    Rebellion      T
## 4264                                             Griptonite Games      E
## 4265                                                                    
## 4266                                                CyberConnect2      T
## 4267                                                                    
## 4268                                              Rainbow Studios      E
## 4269                                                        EA LA      E
## 4270                                              Pam Development      E
## 4271                                             Ubisoft Shanghai      M
## 4272                                                                    
## 4273                                          Shiny Entertainment   E10+
## 4274                                                  Buzz Monkey      T
## 4275                                                      Ubisoft   E10+
## 4276                                           Bandai Namco Games       
## 4277                                                                    
## 4278                                                                    
## 4279                                                                    
## 4280                                                    EA Sports      E
## 4281                                                                    
## 4282                                                                    
## 4283                                          Shiny Entertainment      T
## 4284                                                     TT Games   E10+
## 4285                                                   EA Tiburon      E
## 4286                                                                    
## 4287                                                                    
## 4288                                                    EA Sports   E10+
## 4289                                                                    
## 4290                                              Bluepoint Games      T
## 4291                                            VIS Entertainment      E
## 4292                                                     Treasure      T
## 4293                                         Webfoot Technologies      E
## 4294                                        High Voltage Software   E10+
## 4295                                                   Starbreeze      M
## 4296                                                   EA Tiburon      E
## 4297                                                                    
## 4298                                        Black Lantern Studios     EC
## 4299                                                                    
## 4300                                             Crystal Dynamics      T
## 4301                                      Midway Studios - Austin      M
## 4302                                                                    
## 4303                                                    EA Sports      E
## 4304                                                       BudCat      T
## 4305                                                  Blitz Games      E
## 4306                                        Human Soft, Ivolgamus      E
## 4307                                                     TT Games   E10+
## 4308                                                  Blitz Games      E
## 4309                                            Vicarious Visions      T
## 4310                                                                    
## 4311                                                  Omega Force      T
## 4312                                                      Ubisoft      E
## 4313                                                                    
## 4314                                               Nerve Software      T
## 4315                                              Visual Concepts      E
## 4316                                                                    
## 4317                                                                    
## 4318                                 Climax Group, Climax Studios      E
## 4319                                              Criterion Games   E10+
## 4320                                                                    
## 4321                                                                    
## 4322                                                                    
## 4323                                        Radical Entertainment   E10+
## 4324                                                                    
## 4325                                                Volition Inc.      M
## 4326                                                                    
## 4327                                                                    
## 4328                                                                    
## 4329                                                                    
## 4330                                                                    
## 4331                                                                    
## 4332                                                     TT Games   E10+
## 4333                                             Eighting/Raizing      T
## 4334                                                    Atlus Co.      M
## 4335                                                                    
## 4336                                                 Climax Group      E
## 4337                                                    505 Games      E
## 4338                                                                    
## 4339                                                                    
## 4340                                                                    
## 4341                               Eurocom Entertainment Software      T
## 4342                                            Vicarious Visions      E
## 4343                                           SEGA Racing Studio      E
## 4344                                                                    
## 4345                                                                    
## 4346                                                                    
## 4347                                                  Omega Force      T
## 4348                                       Backbone Entertainment      E
## 4349                                                                    
## 4350                                               Studio Gigante      T
## 4351                                                    EA Canada      E
## 4352                                                Day 1 Studios      M
## 4353                                                                    
## 4354                                                       Yuke's      T
## 4355                                                    EA Canada      E
## 4356                                                 Climax Group      E
## 4357                                              EA Bright Light      T
## 4358                                                                    
## 4359                                                       Konami      E
## 4360                                              Electronic Arts      T
## 4361                                                                    
## 4362                                                   Team Ninja      T
## 4363                                                                    
## 4364                                                                    
## 4365                                                 MachineGames      M
## 4366                                            High Moon Studios      M
## 4367                                                                    
## 4368                                                                    
## 4369                                             Ubisoft Montreal      M
## 4370                                    Camelot Software Planning      E
## 4371                                                    EA Canada      E
## 4372                                                Day 1 Studios      M
## 4373                                          Wideload Games Inc.      E
## 4374                                           Double Helix Games      M
## 4375                                                                    
## 4376                                                        Relic      M
## 4377                                                    505 Games      E
## 4378                                       Harmonix Music Systems   E10+
## 4379                                                   Kush Games      E
## 4380                                      Farsight Studios, Crave      E
## 4381                                                                    
## 4382                                                         KCET      E
## 4383                                                                    
## 4384                                                  KCE Studios      T
## 4385                                                                    
## 4386                                            Computer Artworks      M
## 4387                                                      Saffire      T
## 4388                          Nintendo, Camelot Software Planning      E
## 4389                                                         Sega      E
## 4390                                               Raven Software      T
## 4391                                        CyberConnect2, Racjin      T
## 4392                                                 MachineGames      M
## 4393                                                 Toys for Bob   E10+
## 4394                                          Team 17, Two Tribes   E10+
## 4395                                                                    
## 4396                                                Point of View      M
## 4397                                                                    
## 4398                                                Firaxis Games   E10+
## 4399                                                                    
## 4400                                                    EA Sports      E
## 4401                                            Digital Illusions      T
## 4402                                                Genuine Games      M
## 4403                                                                    
## 4404                                                                    
## 4405                                      Neversoft Entertainment      T
## 4406                                                                    
## 4407                                                                    
## 4408                                            Traveller's Tales   E10+
## 4409                                            Creative Assembly      M
## 4410                                                      Ubisoft      E
## 4411                                            Square Enix, TOSE      E
## 4412                                                                    
## 4413                                                                    
## 4414                                                                    
## 4415                                                                    
## 4416                                                                    
## 4417                                           Kuju Entertainment      E
## 4418                                                       Konami   E10+
## 4419                                                                    
## 4420                                                                    
## 4421                                                                    
## 4422                                                                    
## 4423                                                                    
## 4424                                                                    
## 4425                               Eurocom Entertainment Software   E10+
## 4426                                                                    
## 4427                                            High Moon Studios      T
## 4428                                                    Slant Six      T
## 4429                                              Rainbow Studios      E
## 4430                                                     Humagade      E
## 4431                                                                    
## 4432                                                                    
## 4433                                                                    
## 4434                                                   EA Tiburon      E
## 4435                                                     Treasure      E
## 4436                                                 Ninja Theory      M
## 4437                                 Artificial Mind and Movement      E
## 4438                                                                    
## 4439                                              Electronic Arts      E
## 4440                                          Etranges Libellules   E10+
## 4441                                                                    
## 4442                                                  Omega Force      T
## 4443                                               Papaya Studios   E10+
## 4444                                          Free Radical Design      T
## 4445                                                                    
## 4446                                            High Moon Studios      T
## 4447                                              Silicon Knights      M
## 4448                                               Red Fly Studio      E
## 4449                                                      Natsume   E10+
## 4450                                                CyberConnect2      T
## 4451                                                   Starbreeze      M
## 4452                                        Frontier Developments   E10+
## 4453                                                                    
## 4454                                                                    
## 4455                                              Q Entertainment   E10+
## 4456                                                                    
## 4457                                                                    
## 4458                                                       Beenox      T
## 4459                                                                    
## 4460                                                Point of View      E
## 4461                                                          THQ      E
## 4462                                                Tri-Crescendo      T
## 4463                                                                    
## 4464                                          Blitz Games Studios      T
## 4465                                                 Secret Level      T
## 4466                                                                    
## 4467                                                     Nintendo      E
## 4468                                    Blue Tongue Entertainment      E
## 4469                                                         SCEE      M
## 4470                                                                    
## 4471                                                                    
## 4472                                                   Team Ninja      M
## 4473                                            Vicarious Visions   E10+
## 4474                                                   Pocketeers      E
## 4475                                                                    
## 4476                                                                    
## 4477                                                        Tenyo      E
## 4478                                                    Runecraft      T
## 4479                                                EA Sports Big      E
## 4480                                                                    
## 4481                                                  Hudson Soft      E
## 4482                                             Gearbox Software      M
## 4483                                                                    
## 4484                                            Traveller's Tales      T
## 4485                                                                    
## 4486                                     LucasArts, Krome Studios      T
## 4487                                                    EA Sports      E
## 4488                                               Argonaut Games      E
## 4489                                                                    
## 4490                                                                    
## 4491                                                CyberConnect2      T
## 4492                                 Artificial Mind and Movement      T
## 4493                                                   989 Sports      E
## 4494                                            High Moon Studios      M
## 4495                                                     TT Games   E10+
## 4496                                       SCEA San Diego Studios      E
## 4497                             Capcom, Pipeworks Software, Inc.      M
## 4498                                  Idea Factory, Compile Heart      T
## 4499                                          Free Radical Design      T
## 4500                                                                    
## 4501                                                        Kamui      T
## 4502                                                                    
## 4503                                                         Inti      E
## 4504                                       Ubisoft, Sensory Sweep      E
## 4505                                                                    
## 4506                                            Overkill Software      M
## 4507                                                       Yuke's      T
## 4508                                                                    
## 4509                                                                    
## 4510                                                      BioWare      M
## 4511                                             War Drum Studios   E10+
## 4512                                        High Voltage Software      M
## 4513                                                                    
## 4514                                                                    
## 4515                                       Harmonix Music Systems      E
## 4516                                                                    
## 4517                                    Sony Online Entertainment      T
## 4518                                                       Capcom   E10+
## 4519                                                                    
## 4520                                                       TOYBOX   E10+
## 4521                                                      Ubisoft   E10+
## 4522                                          Sunrise Interactive      T
## 4523                                              Electronic Arts      E
## 4524                                               Hijinx Studios      E
## 4525                                                  Square Enix      T
## 4526                                                       Konami      T
## 4527                                             Rockstar Studios      M
## 4528                                         Game Machine Studios      E
## 4529                                                  Alfa System      T
## 4530                                                 Digital Kids      E
## 4531                                       Obsidian Entertainment      M
## 4532                                                 MachineGames       
## 4533                                                      Mastiff      T
## 4534                                                 Virtual Toys      E
## 4535                                          Ubisoft Montpellier   E10+
## 4536                                                    EA Sports      E
## 4537                                                                    
## 4538                                                       Midway      T
## 4539                                                     Zoe Mode      E
## 4540                                                    Kouyousha      T
## 4541                                       Microsoft Game Studios      E
## 4542                                               Now Production      E
## 4543                                                                    
## 4544                                                         Sega      T
## 4545                                        Radical Entertainment   E10+
## 4546                                                       Aspect   E10+
## 4547                                                                    
## 4548                                                                    
## 4549                                                    EA Sports      E
## 4550                                                   EA Chicago      M
## 4551                                                    EA Canada      E
## 4552                                                Krome Studios   E10+
## 4553                                                         Gust      T
## 4554                                                       Capcom      E
## 4555                                                  Juice Games      T
## 4556                     Ritual Entertainment, Avalanche Software      M
## 4557                                                    2K Sports   E10+
## 4558                                                        EA LA      T
## 4559                                              Edge of Reality      T
## 4560                                        Frontier Developments      T
## 4561                                                                    
## 4562                                                                    
## 4563                                                                    
## 4564                                                                    
## 4565                                      Neversoft Entertainment      T
## 4566                                                                    
## 4567                                                                    
## 4568                                                      Virtuos   E10+
## 4569                                                  D3Publisher      E
## 4570                                                                    
## 4571                                                    Psygnosis      E
## 4572                                       Acclaim Studios Austin      E
## 4573                                                                    
## 4574                                            Vicarious Visions   E10+
## 4575                                               Papaya Studios   E10+
## 4576                                                    Black Box      E
## 4577                                              Armature Studio      T
## 4578                                        High Voltage Software      M
## 4579                                                                    
## 4580                                              Electronic Arts      E
## 4581                                                   Kush Games      E
## 4582                                                                    
## 4583                                                 Climax Group      E
## 4584                                                                    
## 4585                                                        Atari      E
## 4586                                                      RedLynx   E10+
## 4587                                                Creat Studios      T
## 4588                                              Electronic Arts      E
## 4589                                                      Ubisoft      E
## 4590                                                       Beenox      T
## 4591                                             Griptonite Games      E
## 4592                                                                    
## 4593                                                                    
## 4594                                                                    
## 4595                                                      Ubisoft   E10+
## 4596                                                                    
## 4597                                                                    
## 4598                                            Pitbull Syndicate      T
## 4599                                                                    
## 4600                                         Phoenix Games Studio      E
## 4601                                                                    
## 4602                               Eurocom Entertainment Software      T
## 4603                                                                    
## 4604                                                                    
## 4605                                                                    
## 4606                                                                    
## 4607                                                                    
## 4608                                            EA Redwood Shores      T
## 4609                                                    EA Canada      E
## 4610                                       SCEA San Diego Studios      E
## 4611                                                 Virtual Toys      E
## 4612                         Konami Computer Entertainment Hawaii      E
## 4613                                  Atomic Planet Entertainment      E
## 4614                                                         TOSE      E
## 4615                                                                    
## 4616                                                                    
## 4617                                          Etranges Libellules   E10+
## 4618                                           Sand Grain Studios      T
## 4619                                                Marvelous AQL   E10+
## 4620                                                                    
## 4621                                              Electronic Arts   E10+
## 4622                                        Frontier Developments   E10+
## 4623                                                     4A Games       
## 4624                                              Visual Concepts      E
## 4625                                                       Capcom      E
## 4626                                             Terminal Reality      M
## 4627                                                                    
## 4628                                                       Konami      M
## 4629                                                      Virtuos      E
## 4630                                                                    
## 4631                                                    TT Fusion   E10+
## 4632                                                                    
## 4633                                              Criterion Games      M
## 4634                                                                    
## 4635                                                        Yager      M
## 4636                                                    EA Sports      E
## 4637                                Nintendo, Intelligent Systems      E
## 4638                                                      Tri-Ace      T
## 4639                                                PlatinumGames      M
## 4640                                                    Telegames      E
## 4641                                             Propaganda Games      T
## 4642                                                                    
## 4643                               Eurocom Entertainment Software      T
## 4644                                                       Capcom      E
## 4645                                                                    
## 4646                                                      Ubisoft      T
## 4647                                                                    
## 4648                                                 Virtual Toys      E
## 4649                                              Bluehole Studio      M
## 4650                                               Spike Chunsoft      M
## 4651                                             Surreal Software      M
## 4652                                                                    
## 4653                                                 Secret Level      T
## 4654                                            Nintendo, Nd Cube      E
## 4655                                                                    
## 4656                                                         KCEJ      M
## 4657                                                      Ubisoft   E10+
## 4658                                                                    
## 4659                                                                    
## 4660                                                   989 Sports      E
## 4661                                         Monolith Productions      M
## 4662                                                                    
## 4663                                                          THQ      E
## 4664                                             Core Design Ltd.      T
## 4665                                                       Konami      E
## 4666                                                                    
## 4667                                                                    
## 4668                                        Radical Entertainment   E10+
## 4669                                                    EA Sports      T
## 4670                                                         SCEA      E
## 4671                                                                    
## 4672                    Red Storm Entertainment, Ubisoft Montreal      M
## 4673                                                                    
## 4674                                            Saber Interactive      M
## 4675                                                   Idol Minds      E
## 4676                                                                    
## 4677                                                Maximum Games      E
## 4678                                                                    
## 4679                                                       Konami      T
## 4680                                                                    
## 4681                                                      Ubisoft      T
## 4682                                               Visceral Games      M
## 4683                                                          THQ      E
## 4684                                                                    
## 4685                                                 Z-Axis, Ltd.      T
## 4686                                              Engine Software      T
## 4687                                            Traveller's Tales   E10+
## 4688                                           Sports Interactive      E
## 4689                                            Collision Studios      M
## 4690                                                          THQ   E10+
## 4691                                                                    
## 4692                                                    EA Sports   E10+
## 4693                                                                    
## 4694                                        Massive Entertainment      M
## 4695                                                                    
## 4696                                                                    
## 4697                                     Knowledge Adventure Inc.      E
## 4698                     Harmonix Music Systems, Demiurge Studios      T
## 4699                                                                    
## 4700                                                    EA Canada      E
## 4701                                                                    
## 4702                                         Tantalus Interactive      E
## 4703                                                                    
## 4704                                       Codemasters Birmingham      E
## 4705                                                                    
## 4706                                              Rainbow Studios      E
## 4707                                                     Treyarch      M
## 4708                                                                    
## 4709                                                                    
## 4710                                                                    
## 4711                                   Irrational Games, 2K Marin      M
## 4712                                       Paradigm Entertainment      T
## 4713                                                                    
## 4714                                                                    
## 4715                                                     Land Ho!      E
## 4716                                                                    
## 4717                                                    EA Canada      T
## 4718                                                     2K Czech      E
## 4719                                                          THQ      T
## 4720                                                       BudCat   E10+
## 4721                                                From Software      T
## 4722                                                                    
## 4723                                                        Shift      T
## 4724                                                       Midway      M
## 4725                                              Visual Concepts      E
## 4726                                                                    
## 4727                                                                    
## 4728                                             Sega, Sonic Team      E
## 4729                                                                    
## 4730                                                                    
## 4731                                              Visual Concepts      E
## 4732                                                                    
## 4733                                                 Asobo Studio      E
## 4734                                                                    
## 4735                                                      n-Space      T
## 4736                                                  Torus Games      E
## 4737                                           Sledgehammer Games      M
## 4738                                                                    
## 4739                                                                    
## 4740                                 Artificial Mind and Movement      E
## 4741                                                                    
## 4742                                                      Ubisoft      E
## 4743                                                          THQ      T
## 4744                     Harmonix Music Systems, Demiurge Studios      T
## 4745                                                     Full Fat   E10+
## 4746                                                   Nihilistic      M
## 4747                                            Digital Illusions      T
## 4748                                                                    
## 4749                                                    EA Sports      T
## 4750                                            EA Redwood Shores      T
## 4751                                          Blitz Games Studios      E
## 4752                                             Arc System Works      T
## 4753                                  Gearbox Software, 3D Realms      M
## 4754                                                  Square Enix       
## 4755                                                     Treyarch      T
## 4756                                           Bandai Namco Games      E
## 4757                                                                    
## 4758                                                   989 Sports      E
## 4759                                                                    
## 4760                                                  Shaba Games      T
## 4761                                 Artificial Mind and Movement      T
## 4762                                                                    
## 4763                                           Avalanche Software      E
## 4764                                                    7 Studios   E10+
## 4765                                                      Ubisoft      E
## 4766                                             Ubisoft Shanghai      M
## 4767                                                    EA Canada      E
## 4768                                                    Neverland      E
## 4769                                                                    
## 4770                                     LucasArts, Krome Studios      T
## 4771                                           Bandai Namco Games      T
## 4772                                                       Konami      M
## 4773                                                                    
## 4774                                              Visual Concepts      E
## 4775                                                    7 Studios      T
## 4776                                                   989 Sports      E
## 4777                                                                    
## 4778                                                                    
## 4779                                                                    
## 4780                                                       Midway      T
## 4781                                              Electronic Arts      E
## 4782                                                                    
## 4783                                                   Activision      T
## 4784                                              Triumph Studios      T
## 4785                                            Traveller's Tales      T
## 4786                                                       Helixe      E
## 4787                                        DONTNOD Entertainment      M
## 4788                                                                    
## 4789                                           Kuju Entertainment      T
## 4790                                                                    
## 4791                                  Pacific Coast Power & Light      E
## 4792                                                                    
## 4793                                                      BioWare      M
## 4794                                                PlatinumGames      T
## 4795                                                   WayForward      E
## 4796                                                                    
## 4797                                                                    
## 4798                                                                    
## 4799                                                CyberConnect2      T
## 4800                                          Etranges Libellules   E10+
## 4801                                                                    
## 4802                                                                    
## 4803                                                                    
## 4804                                                                    
## 4805                                                                    
## 4806                                   Acclaim Studios Cheltenham      E
## 4807                                                                    
## 4808                                           Heavy Iron Studios      E
## 4809                                              Digital Eclipse      E
## 4810                                                    EA Canada      E
## 4811                                                                    
## 4812                                                    Eutechnyx      E
## 4813                                                   989 Sports      E
## 4814                                                    Game Arts      T
## 4815                                                Point of View      E
## 4816                                          Twisted Pixel Games      T
## 4817                                                                    
## 4818                                            Vicarious Visions      T
## 4819                                            Traveller's Tales   E10+
## 4820                                                                    
## 4821                                              Rainbow Studios      E
## 4822                                              Electronic Arts      E
## 4823                                     Pipeworks Software, Inc.   E10+
## 4824                                                      Ubisoft      E
## 4825                                                        Maxis      T
## 4826                                                                    
## 4827                                                                    
## 4828                                                                    
## 4829                                                       Altron      E
## 4830                                                    Zoo Games      E
## 4831                                                                    
## 4832                                                     FUN Labs      E
## 4833                                                       Yuke's      T
## 4834                                                     2K Czech      M
## 4835                                                                    
## 4836                                                                    
## 4837                                                       Konami      E
## 4838                                                                    
## 4839                                              Electronic Arts      E
## 4840                                                 Sumo Digital   E10+
## 4841                                                        Maxis   E10+
## 4842                                                      49Games      E
## 4843                                                                    
## 4844                                               Argonaut Games      T
## 4845                                                                    
## 4846                                        Black Lantern Studios      E
## 4847                                                  Zen Studios      E
## 4848                                                                    
## 4849                                  Victor Interactive Software      E
## 4850                                                                    
## 4851                                                        Exakt      T
## 4852                                                         TOSE   E10+
## 4853                                                                    
## 4854                                                                    
## 4855                                                       Konami      T
## 4856                                           Jester Interactive      E
## 4857                                                       Yuke's      M
## 4858                                                                    
## 4859                                             Crystal Dynamics      T
## 4860                                   Frogwares, Mistic Software      E
## 4861                                                    7 Studios      T
## 4862                                                     Treyarch      T
## 4863                                                     Full Fat      E
## 4864                                                  Juice Games      T
## 4865                                                    LucasArts   E10+
## 4866                                                                    
## 4867                                                     TT Games   E10+
## 4868                                                                    
## 4869                                      Grasshopper Manufacture      M
## 4870                                           Monster Games Inc.      E
## 4871                                              Firebrand Games      E
## 4872                                                                    
## 4873                                                                    
## 4874                                                                    
## 4875                                                       Yuke's      T
## 4876                                                        Prope      E
## 4877                                            Vicarious Visions      E
## 4878                                                From Software      T
## 4879                                                    EA Canada      E
## 4880                                                                    
## 4881                                                      BioWare      M
## 4882                                              EA Bright Light      T
## 4883                                            Wow Entertainment      M
## 4884                                     Monolith Soft, Banpresto      T
## 4885                                                    EA Canada      E
## 4886                                                                    
## 4887                                                                    
## 4888                                                From Software       
## 4889                                                    EA Canada      E
## 4890                                                                    
## 4891                                                    EA Sports      E
## 4892                                     1st Playable Productions      E
## 4893                                                                    
## 4894                                                   EA Tiburon      E
## 4895                                                                    
## 4896                                                          THQ      E
## 4897                                                        Namco      T
## 4898                                                                    
## 4899                                                                    
## 4900                                            High Moon Studios      T
## 4901                                       Obsidian Entertainment      M
## 4902                                                                    
## 4903                                                                    
## 4904                                                                    
## 4905                                                    EA Canada      E
## 4906                                                      Ubisoft   E10+
## 4907                                         Exient Entertainment      E
## 4908                                                                    
## 4909                                                                    
## 4910                                                                    
## 4911                                                                    
## 4912                                                  Square Enix      T
## 4913                                                                    
## 4914                                           SuperMassive Games      M
## 4915                                                                    
## 4916                                                   Sonic Team   E10+
## 4917                                                                    
## 4918                                            Vicarious Visions   E10+
## 4919                                   Sega Studios San Francisco      T
## 4920                                                                    
## 4921                                                Krome Studios      T
## 4922                                                  Torus Games      E
## 4923                                                 Light Weight      M
## 4924                                             Crystal Dynamics      M
## 4925                                              Electronic Arts      E
## 4926                                                                    
## 4927                                           Sand Grain Studios      T
## 4928                                         Monolith Productions      M
## 4929                                              Page 44 Studios      E
## 4930                                              Ubisoft Romania      E
## 4931                                                                    
## 4932                                                                    
## 4933                                             Digital Extremes      M
## 4934                               Eurocom Entertainment Software   E10+
## 4935                                                        Maxis   E10+
## 4936                                               Io Interactive      M
## 4937                                                                    
## 4938                                          Intelligent Systems      E
## 4939                                                       Capcom      E
## 4940                                                                    
## 4941                                       SCEA San Diego Studios      E
## 4942                                      Red Storm Entertainment      T
## 4943                                                 EA Salt Lake      E
## 4944                                                                    
## 4945                                                      Ubisoft   E10+
## 4946                                            High Moon Studios      T
## 4947                                                  Omega Force      T
## 4948                                                  Blitz Games      E
## 4949                                                                    
## 4950                                                                    
## 4951                                                                    
## 4952                                                          THQ      E
## 4953                                                    Ganbarion      T
## 4954                                                    EA Canada      E
## 4955                                              Milestone S.r.l      E
## 4956                                                Volition Inc.      M
## 4957                                                Magic Pockets      E
## 4958                                       Obsidian Entertainment      T
## 4959                                                                    
## 4960                                           Double Helix Games      M
## 4961                                                                    
## 4962                                                                    
## 4963                                                                    
## 4964                                                    Atlus Co.      M
## 4965                                                                    
## 4966                                                                    
## 4967                                                                    
## 4968                                              Giants Software      E
## 4969                                              Visual Concepts      E
## 4970                                                    Red Tribe   E10+
## 4971                                                                    
## 4972                                                                    
## 4973                                               Raven Software      T
## 4974                                                                    
## 4975                                                                    
## 4976                                                        Atlus      T
## 4977                                       Red Zone Entertainment      E
## 4978                                                     Eighting      T
## 4979                                                      Acclaim      M
## 4980                                                    EA Sports      E
## 4981                                                                    
## 4982                                                                    
## 4983                                 Artificial Mind and Movement      E
## 4984                                                 Sumo Digital   E10+
## 4985                                                        Amuze      M
## 4986                                                    EA Canada      E
## 4987                                                                    
## 4988                                            Creative Assembly      M
## 4989                                       Harmonix Music Systems      T
## 4990                                                                    
## 4991                                                       Uacari      E
## 4992                                        EA Canada, Nihilistic      T
## 4993                                                                    
## 4994                                                Point of View      E
## 4995                                                                    
## 4996                                                 MachineGames      M
## 4997                                                                    
## 4998                                                  Blitz Games      E
## 4999                                                      Bugbear      T
## 5000                                                                    
## 5001                                                      EA DICE      M
## 5002                                                    EA Canada      E
## 5003                                           Kojima Productions      M
## 5004                                                                    
## 5005                                                   EA Tiburon      E
## 5006                                                                    
## 5007                                             SCE Japan Studio      E
## 5008                                            Cyberlore Studios      T
## 5009                                               Eidos Montreal      M
## 5010                                                                    
## 5011                                      EA Sports, EA Vancouver      E
## 5012                                                    Game Arts      T
## 5013                                                   NanaOn-Sha      E
## 5014                                                         KCET      M
## 5015                                                                    
## 5016                                        High Voltage Software      E
## 5017                                              Edge of Reality      T
## 5018                                 Artificial Mind and Movement      T
## 5019                                                Volition Inc.      M
## 5020                                                       Capcom      T
## 5021                                                                    
## 5022                                                                    
## 5023                                        High Voltage Software      M
## 5024                                              Rainbow Studios      E
## 5025                                                                    
## 5026                                                                    
## 5027                                   Blue Byte, Related Designs      T
## 5028                                                                    
## 5029                                                                    
## 5030                                         Lightning Fish Games      E
## 5031                                                   Activision      E
## 5032                                                     Ambrella      E
## 5033                                                                    
## 5034                                                                    
## 5035                                        Black Lantern Studios     EC
## 5036                                        High Voltage Software      T
## 5037                                                                    
## 5038                                                 Sumo Digital      E
## 5039                                                       Yuke's      E
## 5040                                                                    
## 5041                                                 Toys for Bob      E
## 5042                                                                    
## 5043                                              Firebrand Games   E10+
## 5044                                                CyberConnect2      T
## 5045                                                 EA Salt Lake      E
## 5046                                                     FUN Labs      T
## 5047                                Lexis Numerique, Virtual Toys      E
## 5048                                                                    
## 5049                                             Ensemble Studios      T
## 5050                                                   EA Tiburon      E
## 5051                                                                    
## 5052                                                         SCEE   E10+
## 5053                                                                    
## 5054                                                       Konami   E10+
## 5055                                                     TT Games   E10+
## 5056                                                       Yuke's      T
## 5057                                                       Konami      E
## 5058                                                      Ubisoft   E10+
## 5059                                                     Nintendo   E10+
## 5060                                                     EA Games      E
## 5061                                                                    
## 5062                                                      Ubisoft      E
## 5063                                                                    
## 5064                                            Vicarious Visions   E10+
## 5065                                                  Codemasters      E
## 5066                                                                    
## 5067                                                                    
## 5068                                             Crafts & Meister      T
## 5069                                                                    
## 5070                                                Magic Pockets      E
## 5071                                          Shiny Entertainment   E10+
## 5072                                                                    
## 5073                                                                    
## 5074                                              Visual Concepts      E
## 5075                                                        Atlus       
## 5076                                                     Zoe Mode      E
## 5077                                                   EA Tiburon      E
## 5078                                                     Treyarch      T
## 5079                                        High Voltage Software      E
## 5080                                                   Kush Games      E
## 5081                                                      Ubisoft      E
## 5082                                            Traveller's Tales   E10+
## 5083                                              Visual Concepts      E
## 5084                                                                    
## 5085                                                      Ubisoft      E
## 5086                                                Ubisoft Paris   E10+
## 5087                                                                    
## 5088                                        Radical Entertainment      E
## 5089                                                  Open Sesame      E
## 5090                                           Sand Grain Studios      T
## 5091                                                      Virtuos      E
## 5092                                              Criterion Games   E10+
## 5093                                     Pipeworks Software, Inc.   E10+
## 5094                                                          3DO      E
## 5095                                              EA Bright Light      E
## 5096                                                                    
## 5097                                                     Blueside      M
## 5098                                                                    
## 5099                                             Next Level Games   E10+
## 5100                                                                    
## 5101                                                  Arcade Moon      E
## 5102                                                   EA Tiburon      T
## 5103                                                   Activision   E10+
## 5104                                               Raven Software      M
## 5105                                                   EA Tiburon      E
## 5106                                                 EA Black Box      T
## 5107                                                   Activision      T
## 5108                                                                    
## 5109                                                                    
## 5110                                                                    
## 5111                                                  id Software      M
## 5112                                                                    
## 5113                                                   Noise Inc.      T
## 5114                                               Ubisoft Quebec      T
## 5115                                                     2K Games      M
## 5116                                                  Indies Zero      T
## 5117                                                  Codemasters   E10+
## 5118                                                        Namco      E
## 5119                                                                    
## 5120                                             Crystal Dynamics      T
## 5121                                                      Psyonix      E
## 5122                                            Blue Castle Games      E
## 5123                                                                    
## 5124                                                       Bungie      T
## 5125                                            Vicarious Visions   E10+
## 5126                                          Amaze Entertainment      E
## 5127                                              Playbox Limited      E
## 5128                                                  Juice Games      T
## 5129                                                                    
## 5130                                       Obsidian Entertainment      T
## 5131                                                                    
## 5132                                                  Codemasters      E
## 5133                                                   EA Tiburon      E
## 5134                                                                    
## 5135                                                    EA Canada      E
## 5136                                                 Sumo Digital      E
## 5137                                                 Climax Group      T
## 5138                                                                    
## 5139                                          Amaze Entertainment      E
## 5140                                                                    
## 5141                                                     EA Games   E10+
## 5142                                                         GRIN      M
## 5143                                                Monolith Soft      T
## 5144                                                                    
## 5145                                                    Neverland   E10+
## 5146                                                                    
## 5147                                                         Sega      T
## 5148                                               Io Interactive   E10+
## 5149                                                  Takara Tomy      T
## 5150                                                                    
## 5151                                                     5TH Cell   E10+
## 5152                                                                    
## 5153                                            Vicarious Visions      T
## 5154                                            EA Redwood Shores      T
## 5155                                                    EA Sports      E
## 5156                                                                    
## 5157                                                    EA Canada      E
## 5158                                                Tri-Crescendo      T
## 5159                                                        EA LA      T
## 5160                                                    Black Box      T
## 5161                                                                    
## 5162                                            Dimps Corporation      T
## 5163                                                         iNiS   E10+
## 5164                                                                    
## 5165                                                         KCEO      E
## 5166                                                Firaxis Games   E10+
## 5167                                                    EA Sports   E10+
## 5168                                                       Konami      T
## 5169                                           Neko Entertainment      E
## 5170                                                      Virtuos      E
## 5171                                               Valve Software      M
## 5172                                       Harmonix Music Systems      T
## 5173                                                                    
## 5174                                                                    
## 5175                                                PlatinumGames   E10+
## 5176                                               Zombie Studios      M
## 5177                                                                    
## 5178                                                      Ubisoft      T
## 5179                                                                    
## 5180                                                          3DO      E
## 5181                               Eurocom Entertainment Software      E
## 5182                                                Point of View      M
## 5183                                                                    
## 5184                                                Monolith Soft   E10+
## 5185                                                                    
## 5186                                                         GRIN      M
## 5187                                                        Tecmo      E
## 5188                                           Heavy Iron Studios   E10+
## 5189                                  Bandai Namco Games, Artdink      T
## 5190                                                                    
## 5191                                                                    
## 5192                                                Pax Softonica      E
## 5193                                                  Zener Works      T
## 5194                                                                    
## 5195                                                                    
## 5196                                             Arc System Works      T
## 5197                                                                    
## 5198                                                                    
## 5199                                                         SCEA      E
## 5200                                              Visual Concepts      E
## 5201                                                                    
## 5202                                                                    
## 5203                                                                    
## 5204                                                                    
## 5205                                    Blue Tongue Entertainment   E10+
## 5206                                            Traveller's Tales      T
## 5207                                                          UDS      T
## 5208                                                      Natsume      E
## 5209                                                  Arcade Moon      T
## 5210                                                   Activision      E
## 5211                                                Day 1 Studios      T
## 5212                                                         TOSE      T
## 5213                                                                    
## 5214                                                                    
## 5215                                                                    
## 5216                                                      Ubisoft   E10+
## 5217                                              Visual Concepts      E
## 5218                                                                    
## 5219                                                   Activision      E
## 5220                                                                    
## 5221                                                                    
## 5222                                                       Beenox      T
## 5223                                                                    
## 5224                                             Ubisoft Montreal   E10+
## 5225                            RED Entertainment, Spike Chunsoft   E10+
## 5226                                                                    
## 5227                                                  Cattle Call      T
## 5228                                                                    
## 5229                                                                    
## 5230                                                                    
## 5231                                             Ubisoft Montreal      M
## 5232                                         Exient Entertainment      E
## 5233                                                                    
## 5234                                                                    
## 5235                               Eurocom Entertainment Software      E
## 5236                                                                    
## 5237                                                                    
## 5238                                                                    
## 5239                                           Inland Productions      T
## 5240                                         Take-Two Interactive   E10+
## 5241                                                                    
## 5242                                                      Ubisoft      E
## 5243                                            CokeM Interactive      E
## 5244                                                                    
## 5245                                            Digital Illusions      T
## 5246                                                  Vanillaware      T
## 5247                                                                    
## 5248                                                                    
## 5249                                             Studio Liverpool   E10+
## 5250                                                                    
## 5251                                                                    
## 5252                                           Sand Grain Studios      T
## 5253                                                          ITL      T
## 5254                                                   Ludia Inc.      E
## 5255                                                                    
## 5256                                                                    
## 5257                                                      Sandlot      M
## 5258                                         Monolith Productions      M
## 5259                                                       Konami      T
## 5260                                                                    
## 5261                                                                    
## 5262                                                                    
## 5263                                                   EA Tiburon      E
## 5264                                                                    
## 5265                                                                    
## 5266                                                     Hypnotix      M
## 5267                                                                    
## 5268                                             SCE Japan Studio      E
## 5269                                           Sports Interactive      E
## 5270                                              Digital Eclipse      E
## 5271                                             Ubisoft Montreal      T
## 5272                                                     FUN Labs      T
## 5273                                                Vir2L Studios      E
## 5274                                                                    
## 5275                                                   Keen Games   E10+
## 5276                                          Team 17, Two Tribes   E10+
## 5277                                                                    
## 5278                                               Airtight Games      T
## 5279                                                       Beenox      T
## 5280                                                                    
## 5281                                                                    
## 5282                                         Take-Two Interactive   E10+
## 5283                                             Eighting/Raizing      T
## 5284                                  Pacific Coast Power & Light      T
## 5285                                                    Atlus Co.      T
## 5286                                Deep Silver Dambuster Studios      M
## 5287                                               Ubisoft Quebec      M
## 5288                                               Spike Chunsoft      T
## 5289                                               Pocket Studios      E
## 5290                                                                    
## 5291                                                    Game Arts   E10+
## 5292                                                  Omega Force      T
## 5293                                                     4A Games       
## 5294                                                                    
## 5295                                                                    
## 5296                                                         Sega      E
## 5297                                                   Cavia Inc.      M
## 5298                                                                    
## 5299                                                    EA Canada   E10+
## 5300                                                       Helixe      E
## 5301                                              Electronic Arts      E
## 5302                                                                    
## 5303                                                   EA Tiburon      T
## 5304                                                                    
## 5305                                                  WildTangent      E
## 5306                                                 Trion Worlds      M
## 5307                                                         GRIN      T
## 5308                                                                    
## 5309                                              Visual Concepts      E
## 5310                                      Bungie Software, Bungie      T
## 5311                                                                    
## 5312                                      Neversoft Entertainment      T
## 5313                                             Arc System Works      T
## 5314                                         Destination Software   E10+
## 5315                    Red Storm Entertainment, Ubisoft Montreal      M
## 5316                                                                    
## 5317                                              Milestone S.r.l      E
## 5318                                                     TT Games   E10+
## 5319                                          Brash Entertainment   E10+
## 5320                                                 Z-Axis, Ltd.      T
## 5321                                                      EA DICE      T
## 5322                                                    Rebellion      M
## 5323                                                                    
## 5324                                                   EA Tiburon      E
## 5325                                       Harmonix Music Systems      E
## 5326                                                   Mass Media      T
## 5327                                                    Haemimont      T
## 5328                                                                    
## 5329                                                                    
## 5330                                                From Software      T
## 5331                                                 Z-Axis, Ltd.      T
## 5332                                                    Game Arts      T
## 5333                                                                    
## 5334                                           Avalanche Software      E
## 5335                                       SCEA San Diego Studios      E
## 5336                                              Edge of Reality   E10+
## 5337                            Crystal Dynamics, Nixxes Software      M
## 5338                High Voltage Software, Backbone Entertainment      E
## 5339                                                        Nadeo      E
## 5340                                                                    
## 5341                                                                    
## 5342                                              Electronic Arts      E
## 5343                                                   EA Chicago      M
## 5344                                                                    
## 5345                                                   Human Soft      E
## 5346                                                                    
## 5347                                                      n-Space      E
## 5348                                                  Omega Force      T
## 5349                                                     Treyarch      M
## 5350                                            High Moon Studios      T
## 5351                                                        Namco      T
## 5352                                                    Psygnosis      E
## 5353                                                                    
## 5354                                                Impulse Games      E
## 5355                                                     Nintendo      E
## 5356                                          Amaze Entertainment   E10+
## 5357                                                       Yuke's      T
## 5358                                                          THQ      T
## 5359                                               Io Interactive   E10+
## 5360                                           Namco Bandai Games      T
## 5361                                                                    
## 5362                                          Sennari Interactive      T
## 5363                                                        Tecmo      E
## 5364                                                Magic Pockets   E10+
## 5365                                                       Capcom   E10+
## 5366                                                                    
## 5367                                           Kuju Entertainment      T
## 5368                                                      Virtuos      T
## 5369                                                                    
## 5370                                                                    
## 5371                                            Taito Corporation      E
## 5372                                               Io Interactive      M
## 5373                                            Gas Powered Games   E10+
## 5374                                             Core Design Ltd.      T
## 5375                                                                    
## 5376                                                                    
## 5377                                                                    
## 5378                                                                    
## 5379                                                 Asobo Studio      E
## 5380                                                        Relic      M
## 5381                                                        Atlus      T
## 5382                                                       Konami      E
## 5383                                                       Yuke's      T
## 5384                                              Visual Concepts      E
## 5385                                                        Maxis      T
## 5386                                                                    
## 5387                                                                    
## 5388                                                                    
## 5389                                          Ubisoft Montpellier   E10+
## 5390                                                     Tantatus      E
## 5391                                              Electronic Arts      E
## 5392                                              Electronic Arts      E
## 5393                                                                    
## 5394                                                       K2 LLC      M
## 5395                                                                    
## 5396                                                   Nihilistic      M
## 5397                                                                    
## 5398                                                                    
## 5399                                        High Voltage Software      M
## 5400                                                    EA Canada      E
## 5401                                                       Racjin      T
## 5402                                                                    
## 5403                                                                    
## 5404                                                                    
## 5405                                                                    
## 5406                                                Day 1 Studios      M
## 5407                                                                    
## 5408                                                                    
## 5409                                                      Ubisoft      T
## 5410                                                     Starfish      E
## 5411                                                Point of View      T
## 5412                                                                    
## 5413                                              The Sims Studio      T
## 5414                                      Buena Vista Interactive      E
## 5415                                                       Konami      E
## 5416                                                    Rare Ltd.      T
## 5417                                                                    
## 5418                                                  Omega Force      T
## 5419                                               Cohort Studios      T
## 5420                                                                    
## 5421                                                                    
## 5422                                                 Dancing Dots      E
## 5423                                     1st Playable Productions   E10+
## 5424                                                  Omega Force      T
## 5425                                                         TOSE      T
## 5426                                     Ubisoft, Powerhead Games      E
## 5427                                                                    
## 5428                                       Paradigm Entertainment      E
## 5429                                                                    
## 5430                                                 Climax Group      T
## 5431                               Eurocom Entertainment Software      T
## 5432                                         Exient Entertainment      E
## 5433                                                Point of View      T
## 5434                                                         SCEJ      T
## 5435                                                                    
## 5436                                             Ubisoft Shanghai      T
## 5437                                   Sega Studios San Francisco   E10+
## 5438                                                                    
## 5439                                                    EA Canada   E10+
## 5440                                                  Square Enix   E10+
## 5441                                                                    
## 5442                                                    Rare Ltd.      E
## 5443                                                                    
## 5444                                                       PopCap      E
## 5445                                      EA Canada, EA Vancouver   E10+
## 5446                                                 Inti Creates   E10+
## 5447                                                                    
## 5448                                                    EA Canada      E
## 5449                                                                    
## 5450                                                      Level 5      T
## 5451                                                                    
## 5452                                                                    
## 5453                                                  Fizz Factor      E
## 5454                                              EA Bright Light      T
## 5455                                                         TOSE      E
## 5456                                                        Shift   E10+
## 5457                                                       Yuke's      T
## 5458                                                        Maxis      T
## 5459                                        Radical Entertainment      T
## 5460                                    Sony Online Entertainment      T
## 5461                                                        Namco      E
## 5462                                                    Ion Storm      M
## 5463                                            Bizarre Creations      E
## 5464                                                   EA Tiburon      E
## 5465                                                 SNK Playmore      T
## 5466                                                                    
## 5467                                           Avalanche Software      E
## 5468                                                Day 1 Studios      T
## 5469                                                From Software      M
## 5470                                                       PopCap      E
## 5471                                                     TT Games   E10+
## 5472                                       Smart Bomb Interactive      E
## 5473                                                     Treyarch      E
## 5474                                             City Interactive      M
## 5475                        Amaze Entertainment, Griptonite Games   E10+
## 5476                                                      Acclaim      T
## 5477                                                                    
## 5478                                            Traveller's Tales   E10+
## 5479                                                                    
## 5480                                                                    
## 5481                                                 Sumo Digital      E
## 5482                                                       Capcom      T
## 5483                                       SCEA San Diego Studios      E
## 5484                                                   Idol Minds      E
## 5485                                                                    
## 5486                                                       Konami      E
## 5487                                                                    
## 5488                                                   EA Chicago      T
## 5489                                                          MTO      E
## 5490                                                      Acquire      M
## 5491                                          Intelligent Systems      E
## 5492                                                                    
## 5493                                                                    
## 5494                                             Ubisoft Montreal      T
## 5495                                                   Activision      T
## 5496                                                                    
## 5497                                                                    
## 5498                                         Nippon Ichi Software      T
## 5499                                                      SunSoft      M
## 5500                                                                    
## 5501                                              Lancarse, Atlus      T
## 5502                                                     Treyarch      T
## 5503                                             Arc System Works      T
## 5504                                     Pipeworks Software, Inc.   E10+
## 5505                                         Nippon Ichi Software      T
## 5506                                                 SNK Playmore      T
## 5507                                                      Tri-Ace      T
## 5508                                              EA Bright Light      T
## 5509                                                                    
## 5510                                                  Blitz Games      E
## 5511                                       SCEA San Diego Studios      E
## 5512                                                                    
## 5513                                                                    
## 5514                                              Digital Eclipse      E
## 5515                                                                    
## 5516                         Capcom, Klein Computer Entertainment      T
## 5517                                                   989 Sports      E
## 5518                                                      Natsume      E
## 5519                                                                    
## 5520                                                 Danger Close      M
## 5521                                                                    
## 5522                                                    EA Sports      E
## 5523                                                                    
## 5524                                                  EA Montreal      E
## 5525                                                                    
## 5526                                               Spike Chunsoft      M
## 5527                                                                    
## 5528                                              EA Bright Light   E10+
## 5529                                            Creative Assembly      M
## 5530                                                                    
## 5531                                 Artificial Mind and Movement   E10+
## 5532                                  Terminal Reality, 4mm Games      T
## 5533                                              Rainbow Studios      E
## 5534                                                                    
## 5535                                                         Sega      M
## 5536                                                    EA Canada      E
## 5537                                                                    
## 5538                                          Intelligent Systems      E
## 5539                                                  D3Publisher   E10+
## 5540                                                           AI   E10+
## 5541                                                                    
## 5542                                              Visual Concepts      E
## 5543                                                   Kush Games      E
## 5544                                                 Secret Level      M
## 5545                                                                    
## 5546                                                Piranha Games      E
## 5547                                                                    
## 5548                                                    505 Games      E
## 5549                                        CD Projekt Red Studio      M
## 5550                                                       Konami      E
## 5551                                                   Mass Media      E
## 5552                                                Sanzaru Games      E
## 5553                                             City Interactive      T
## 5554                                                                    
## 5555                                                                    
## 5556                                        High Voltage Software      T
## 5557                                               Argonaut Games      M
## 5558                                                    EA Canada      E
## 5559                                                                    
## 5560                                          Ubisoft Montpellier   E10+
## 5561                                            Eidos Interactive      T
## 5562                                                       Konami      E
## 5563                                                      Ubisoft      E
## 5564                                  Terminal Reality, 4mm Games      T
## 5565                                                         Sega   E10+
## 5566                                                      Ubisoft   E10+
## 5567                                                 Secret Level      M
## 5568                                               Visceral Games      M
## 5569                                                                    
## 5570                                                                    
## 5571                                                  Blitz Games      E
## 5572                                       Smack Down Productions      E
## 5573                                             SCE Santa Monica      T
## 5574                                                         iNiS      T
## 5575                                                    EA Canada      E
## 5576                                                                    
## 5577                                                                    
## 5578                                                      n-Space      T
## 5579                                        DONTNOD Entertainment      M
## 5580                                                       Konami      M
## 5581                                                                    
## 5582                                             Capcom Vancouver      M
## 5583                                                                    
## 5584                                            Dimps Corporation      T
## 5585                                                Tri-Crescendo      T
## 5586                                  Victor Interactive Software      E
## 5587                                                   Team Ninja      M
## 5588                                                                    
## 5589                                                  Square Enix      T
## 5590                                                                    
## 5591                                              Triumph Studios      T
## 5592                                         Exient Entertainment      E
## 5593                                                       Konami   E10+
## 5594                                                                    
## 5595                                           Rocksteady Studios      T
## 5596                                                      RedLynx      T
## 5597                                            High Moon Studios      M
## 5598                                      Neversoft Entertainment      T
## 5599                                               Now Production      E
## 5600                                             Griptonite Games   E10+
## 5601                                         Tantalus Interactive      E
## 5602                                                      Nobilis      E
## 5603                                                      Ubisoft      T
## 5604                                              EA Bright Light      T
## 5605                                                 CAProduction      E
## 5606                                                                    
## 5607                                                                    
## 5608                                                      Ubisoft   E10+
## 5609                                                                    
## 5610                                       Blizzard Entertainment      T
## 5611                                                         Sega      T
## 5612                                                Polygon Magic      T
## 5613                                                    EA Canada      E
## 5614                                       Pipe Dream Interactive      E
## 5615                                              EA Bright Light      E
## 5616                                                    EA Sports      E
## 5617                                                  Codemasters      M
## 5618                                                 Inti Creates   E10+
## 5619                                                  Blitz Games   E10+
## 5620                                                  Codemasters   E10+
## 5621                                                                    
## 5622                                                       Konami      E
## 5623                                               Hijinx Studios      M
## 5624                                                                    
## 5625                                               Raven Software      M
## 5626                                       Harmonix Music Systems      E
## 5627                                                                    
## 5628                                     Buzz Monkey, EA Montreal      M
## 5629                                                                    
## 5630                                                                    
## 5631                                            Atlus, Dingo Inc.      T
## 5632                                                                    
## 5633                                                                    
## 5634                                                                    
## 5635                                                         Opus      T
## 5636                                                      Endemol   E10+
## 5637                                                                    
## 5638                                                                    
## 5639                                                 Toys for Bob      E
## 5640                                       Harmonix Music Systems   E10+
## 5641                                                  Venom Games      M
## 5642                                                                    
## 5643                                                                    
## 5644                                                                    
## 5645                                                      Ubisoft   E10+
## 5646                                                                    
## 5647                                   Game Republic, JapanStudio      T
## 5648                                                                    
## 5649                                               Airtight Games      M
## 5650                                             Digital Extremes      M
## 5651                                              Visual Concepts      E
## 5652                                                                    
## 5653                                                                    
## 5654                                                                    
## 5655                                                     CodeFire      E
## 5656                                                      Acclaim      E
## 5657                                                                    
## 5658                                                                    
## 5659                                                                    
## 5660                                       Microsoft Game Studios      E
## 5661                                                       BudCat      E
## 5662                                         Destination Software      E
## 5663                                                    EA Canada      E
## 5664                                                   Activision      T
## 5665                                                                    
## 5666                                                 Eden Studios   E10+
## 5667                                                    EA Canada      T
## 5668                                         Webfoot Technologies      E
## 5669                                                 Inti Creates   E10+
## 5670                                                   Phantagram      M
## 5671                                             Terminal Reality      E
## 5672                          Mercury Steam, Alchemic Productions      M
## 5673                                              Nixxes Software      M
## 5674                                                                    
## 5675                                                                    
## 5676                                                         Koei      E
## 5677                                            SScholastic Media   E10+
## 5678                                             Lionhead Studios      M
## 5679                                              Electronic Arts      E
## 5680                                 Artificial Mind and Movement      E
## 5681                                               FreeStyleGames      T
## 5682                                                 Access Games      M
## 5683                                            High Impact Games   E10+
## 5684                                                                    
## 5685               Namco Bandai Games America, Namco Bandai Games      T
## 5686                                                    Zoo Games      T
## 5687                                                  Omega Force      T
## 5688                                                     Sega AM2      T
## 5689                                        Radical Entertainment   E10+
## 5690                                                     TT Games   E10+
## 5691                                            Vicarious Visions   E10+
## 5692                                                                    
## 5693                                        HB Studios Multimedia      E
## 5694                                                                    
## 5695                                                  Codemasters      E
## 5696                                              Triumph Studios      T
## 5697                                                                    
## 5698                                          Amaze Entertainment   E10+
## 5699                                                                    
## 5700                                             Arc System Works      T
## 5701                                       SCEA San Diego Studios      E
## 5702                                            Vicarious Visions      E
## 5703                                                        Atlus   E10+
## 5704                                          Iron Galaxy Studios      T
## 5705                                                                    
## 5706                                              EA Bright Light   E10+
## 5707                                                                    
## 5708                                                  Hudson Soft      E
## 5709                                                       BudCat      E
## 5710                                                                    
## 5711                                                                    
## 5712                                                                    
## 5713                                                                    
## 5714                                                                    
## 5715                                              Cat Daddy Games      E
## 5716                                        High Voltage Software      E
## 5717                                                    EA Canada      E
## 5718                                       Backbone Entertainment   E10+
## 5719                                      Image Epoch, Imageepoch      T
## 5720                                                 Access Games      M
## 5721                                                        Atlus      M
## 5722                                           Bandai Namco Games       
## 5723                                                                    
## 5724                                                                    
## 5725                                                                    
## 5726                                           Avanquest Software      E
## 5727                                          Shiny Entertainment      T
## 5728                                           Namco Bandai Games   E10+
## 5729                                                        Arika      E
## 5730                                 Midway Studios - Los Angeles      M
## 5731                                           Human Head Studios      T
## 5732                                                                    
## 5733                                                        Atlus      T
## 5734                                                                    
## 5735                                                                    
## 5736                                 Big Red Button Entertainment   E10+
## 5737                                                                    
## 5738                                                    Blue Byte   E10+
## 5739                                             Studio Liverpool   E10+
## 5740                                          Etranges Libellules   E10+
## 5741                                                                    
## 5742                                                                    
## 5743                                                                    
## 5744                                                                    
## 5745                                                 Asobo Studio      E
## 5746                                                                    
## 5747                                                    Haemimont      T
## 5748                                             Wildfire Studios      T
## 5749                                             Gearbox Software      M
## 5750                                                     TT Games   E10+
## 5751                                                                    
## 5752                                                                    
## 5753                                                                    
## 5754                                            Vicarious Visions   E10+
## 5755                                                   MumboJumbo      E
## 5756                                                                    
## 5757                                               Airtight Games      T
## 5758                                                                    
## 5759                                                                    
## 5760                                                                    
## 5761                                                                    
## 5762                                                                    
## 5763                                                                    
## 5764                                                                    
## 5765                                 Artificial Mind and Movement      E
## 5766                                              Rockstar London      M
## 5767                                                       Capcom   E10+
## 5768                                                                    
## 5769                                        Human Soft, Ivolgamus      E
## 5770                                            Vicarious Visions      T
## 5771                                                Game Republic      T
## 5772                                                       Capcom      E
## 5773                                                   Kush Games      E
## 5774                                                    Ganbarion      T
## 5775                                                                    
## 5776                                                                    
## 5777                                                                    
## 5778                                                      Ubisoft   E10+
## 5779                                              Electronic Arts      E
## 5780                                                    EA Sports      E
## 5781                                                                    
## 5782                                                                    
## 5783                                            Sidhe Interactive      E
## 5784                                                                    
## 5785                                       Backbone Entertainment      M
## 5786                                                                    
## 5787                                              Edge of Reality      T
## 5788                                                    EA Sports      E
## 5789                                                                    
## 5790                                                                    
## 5791                                           Inti, Inti Creates      E
## 5792                                                                    
## 5793                                                                    
## 5794                                                       Konami      E
## 5795                                              Rainbow Studios      E
## 5796                                                                    
## 5797                                                   989 Sports      E
## 5798                                                                    
## 5799                                                     FUN Labs      T
## 5800                                                        Magix      E
## 5801                                                                    
## 5802                                                                    
## 5803                                                                    
## 5804                                                                    
## 5805                                                                    
## 5806                                       Mucky Foot Productions      M
## 5807                                                     Humagade   E10+
## 5808                                                                    
## 5809                                             Propaganda Games      T
## 5810                                                                    
## 5811                                                    Denyu-Sha      E
## 5812                                          Ronin Entertainment      T
## 5813                                                                    
## 5814                                                                    
## 5815                                           Disney Interactive      E
## 5816                                                      Artdink      T
## 5817                                                                    
## 5818                                        High Voltage Software      E
## 5819                                                                    
## 5820                                                                    
## 5821                                                        Shade      T
## 5822                                                    EA Canada      E
## 5823                                                      Ubisoft   E10+
## 5824                                            Vicarious Visions   E10+
## 5825                                            Digital Illusions      E
## 5826                                                     Prolific      E
## 5827                                                                    
## 5828                                                   WayForward      T
## 5829                                                                    
## 5830                                                                    
## 5831                                                                    
## 5832                                              Digital Eclipse      E
## 5833                                                       Beenox   E10+
## 5834                                                                    
## 5835                                                    Eutechnyx      E
## 5836                                             Arc System Works      T
## 5837                                                                    
## 5838                                                                    
## 5839                                               Big Huge Games      M
## 5840                                                                    
## 5841                                            Nintendo, Nd Cube      E
## 5842                                       Harmonix Music Systems   E10+
## 5843                                              Criterion Games      E
## 5844                                                 Climax Group      E
## 5845                                                       Capcom      T
## 5846                                                                    
## 5847                High Voltage Software, Backbone Entertainment      E
## 5848                                                   Idol Minds   E10+
## 5849                                                                    
## 5850                                                CyberConnect2      T
## 5851                                                                    
## 5852                                                                    
## 5853                                                                    
## 5854                                                                    
## 5855                                           Rocksteady Studios      M
## 5856                                                                    
## 5857                                         SCE Studio Cambridge      M
## 5858                                               Sinister Games      E
## 5859                                                                    
## 5860                                                                    
## 5861                                                 SNK Playmore      T
## 5862                                                    Rebellion      M
## 5863                                                                    
## 5864                                                     TT Games   E10+
## 5865                                                                    
## 5866                                                      Ubisoft      T
## 5867                                           Banpresto, SoftMax      T
## 5868                                                   WayForward      E
## 5869                                                                    
## 5870                                                         Koei      E
## 5871                                                                    
## 5872                                                                    
## 5873                                                        Mahou      E
## 5874                                                  Codemasters      E
## 5875                                                                    
## 5876                                                                    
## 5877                                                                    
## 5878                                                Graphic State      E
## 5879                                                                    
## 5880                                                  Square Enix      T
## 5881                                                      Ubisoft   E10+
## 5882                                                       Altron      E
## 5883                                                                    
## 5884                                                      Ubisoft      E
## 5885                                                                    
## 5886                                                                    
## 5887                                           Bandai Namco Games       
## 5888                                                   EA Tiburon      E
## 5889                                                          3DO      T
## 5890                                                    EA Canada      E
## 5891                                                       Midway      M
## 5892                                                       Anchor      M
## 5893                                                From Software      T
## 5894                                                                    
## 5895                                                                    
## 5896                                                       Capcom      M
## 5897                                                  Omega Force      T
## 5898                                 Climax Group, Climax Studios      M
## 5899                                                                    
## 5900                                                                    
## 5901                                                                    
## 5902                                                       Konami      E
## 5903                                                      Acclaim      T
## 5904                                           Bandai Namco Games      T
## 5905                                                     Wizarbox      E
## 5906                                                                    
## 5907                                             Pandemic Studios      M
## 5908                                                                    
## 5909                                                        Maxis      T
## 5910                                                                    
## 5911                                                                    
## 5912                                                                    
## 5913                                                       Altron      E
## 5914                                          Hyperspace Cowgirls      E
## 5915                                                                    
## 5916                                                                    
## 5917                                                     EA Games      E
## 5918                                                                    
## 5919                                            Koei, Omega Force      M
## 5920                                              Edge of Reality      E
## 5921                                                Point of View      T
## 5922                                                   Human Soft      E
## 5923                                                     FUN Labs      E
## 5924                                                       Konami      E
## 5925                                              Digital Eclipse      T
## 5926                                              Related Designs   E10+
## 5927                                                     TT Games   E10+
## 5928                                               Bigbig Studios   E10+
## 5929                                                     Treyarch      T
## 5930                                                                    
## 5931                                                                    
## 5932                                                                    
## 5933                                            Vicarious Visions      E
## 5934                                                        Atlus   E10+
## 5935                                                 The Workshop   E10+
## 5936                                                                    
## 5937                                                      Ubisoft      E
## 5938                                                     EA Games   E10+
## 5939                                                    Game Arts      T
## 5940                                                      Ubisoft      E
## 5941                                             Next Level Games   E10+
## 5942             Neversoft Entertainment, Underground Development      T
## 5943                                            Sidhe Interactive      E
## 5944                                                   WayForward   E10+
## 5945                                                        Maxis      T
## 5946                                                       Altron      E
## 5947                                                   Pocketeers      E
## 5948                                  Terminal Reality, 4mm Games      T
## 5949                                                                    
## 5950                                                                    
## 5951                                             Simon & Schuster      T
## 5952                                                                    
## 5953                                              Electronic Arts   E10+
## 5954                                               Io Interactive   E10+
## 5955                                                    Banpresto      T
## 5956                                                                    
## 5957                                                     TT Games   E10+
## 5958                                                                    
## 5959                                               Papaya Studios   E10+
## 5960                                                    EA Canada      E
## 5961                                                      Natsume      E
## 5962                                                  Omega Force      T
## 5963                                                                    
## 5964                                                    Sony Bend      M
## 5965                                                                    
## 5966                                                     Novarama   E10+
## 5967                                             Paon Corporation   E10+
## 5968                                                                    
## 5969                                           Heavy Iron Studios   E10+
## 5970                                                         SCEA      E
## 5971                                                    EA Canada      E
## 5972                                           Namco Bandai Games      E
## 5973                                                                    
## 5974                                                    Black Box      T
## 5975                                                                    
## 5976                                                                    
## 5977                                                                    
## 5978                                           Double Helix Games      T
## 5979                                                       Capcom      T
## 5980                                                         Cing      T
## 5981                                                                    
## 5982                                                                    
## 5983                                                  Omega Force      T
## 5984                                                                    
## 5985                                                 ImaginEngine      E
## 5986                                                                    
## 5987                                                   Cavia Inc.      M
## 5988                                                       Altron      E
## 5989                                      Midway Studios - Austin      M
## 5990                                            High Moon Studios      M
## 5991                                                       Konami      E
## 5992                                                                    
## 5993                                                 Virtual Toys      E
## 5994                                                         GRIN      M
## 5995                                           Valuewave Co.,Ltd.      E
## 5996                                                   Starbreeze      M
## 5997                                                    Eutechnyx      E
## 5998                                                                    
## 5999                                              DoubleTap Games      E
## 6000                                                      Bugbear      T
## 6001                                                                    
## 6002                                                                    
## 6003                                                                    
## 6004                                                                    
## 6005                                                                    
## 6006                                                                    
## 6007                                                                    
## 6008                                                                    
## 6009                                                                    
## 6010                                                                    
## 6011                                              Mistic Software      E
## 6012                                                          THQ   E10+
## 6013                                        Black Lantern Studios      E
## 6014                                      Marvelous Entertainment      E
## 6015                                                       Capcom      M
## 6016                                                     IR Gurus      T
## 6017                                             Ubisoft Montreal      T
## 6018                                                     EA Games      T
## 6019                                                         Cing      T
## 6020                                            Vicarious Visions      T
## 6021                                    Blue Tongue Entertainment      E
## 6022                                                                    
## 6023                                                                    
## 6024                                                 2K Australia      M
## 6025                                                   EA Tiburon      E
## 6026                                                                    
## 6027                                                        Atlus      T
## 6028                                         LightBox Interactive      T
## 6029                                                       Akella      T
## 6030                                              Electronic Arts      E
## 6031                                                 Project Aces      T
## 6032                                                                    
## 6033                                                                    
## 6034                                            Blue Castle Games   E10+
## 6035                                                         Xpec   E10+
## 6036                                              Spark Unlimited      T
## 6037                                                                    
## 6038                                               Hijinx Studios      T
## 6039                                                Sanzaru Games      E
## 6040                                                   Mass Media      E
## 6041                                                       Konami      E
## 6042                                                  Game Brains      E
## 6043                                                                    
## 6044                                            RED Entertainment      T
## 6045                                                         Koei      T
## 6046                                                     Techland      M
## 6047                                                                    
## 6048                                        Black Lantern Studios     EC
## 6049                                         Exient Entertainment      E
## 6050                                           Kojima Productions      M
## 6051                                                        Maxis      E
## 6052                                                                    
## 6053                                                Vicious Cycle   E10+
## 6054                                                                    
## 6055                                                                    
## 6056                                             Ubisoft Montreal   E10+
## 6057                                                 Circus Freak      E
## 6058                                         Nippon Ichi Software      T
## 6059                                                                    
## 6060                                                                    
## 6061                                                       Capcom      T
## 6062                                                      Ubisoft      E
## 6063                                                                    
## 6064                                                  Omega Force      T
## 6065                                                   Sonic Team      T
## 6066                                                       Midway      M
## 6067                                                                    
## 6068                                                                    
## 6069                                         Infinite Interactive      E
## 6070                                                                    
## 6071                                                                    
## 6072                                                                    
## 6073                                                                    
## 6074                                                         TOSE      M
## 6075                                                        Crave      E
## 6076                               Eurocom Entertainment Software      E
## 6077                                                   EA Tiburon      E
## 6078                                                                    
## 6079                                                Wargaming.net      T
## 6080                                                  Indie Built      E
## 6081                                                                    
## 6082                                                Game Republic      T
## 6083                                                      Ubisoft      M
## 6084                                                   Game Titan      E
## 6085                                                        Namco   E10+
## 6086                                                Creat Studios      E
## 6087                                                                    
## 6088                                                      Ubisoft      E
## 6089                                           SCEE London Studio      T
## 6090                                                                    
## 6091                                                    Clap Hanz      E
## 6092                                                                    
## 6093                                            Vicarious Visions      E
## 6094                                         Webfoot Technologies   E10+
## 6095                                                                    
## 6096                                               Visceral Games      M
## 6097                                                                    
## 6098                                                                    
## 6099                                                    EA Sports      E
## 6100                                             Rockstar Toronto      M
## 6101                                                      Sacnoth      M
## 6102                                                        Spike      T
## 6103                                            Traveller's Tales      T
## 6104                                      Black Ops Entertainment      T
## 6105                                                                    
## 6106                                              Digital Eclipse      E
## 6107                                                        Namco      T
## 6108                                                                    
## 6109                                                                    
## 6110                                          Shiny Entertainment   E10+
## 6111                                                 Climax Group      E
## 6112                                                                    
## 6113                                                         Sega      T
## 6114                                                                    
## 6115                                                                    
## 6116                                        EA Canada, Nihilistic      T
## 6117                                                                    
## 6118                                                                    
## 6119                                                         TOSE   E10+
## 6120                                                     TT Games   E10+
## 6121                                                                    
## 6122                                                Gorilla Games      E
## 6123                                                Clover Studio      T
## 6124                                                                    
## 6125                                                         Cave      T
## 6126                                                   Brain Toys      E
## 6127                                             Lionhead Studios      T
## 6128                                           Neko Entertainment      E
## 6129                                                                    
## 6130                                                  Sanuk Games      E
## 6131                                                  Omega Force      T
## 6132                                               Zombie Studios      M
## 6133                                                From Software      T
## 6134                                                      Warthog      E
## 6135                                                   Epic Games      M
## 6136                                            Just Add Monsters      T
## 6137                                                                    
## 6138                                                         Sims      E
## 6139                                          Amaze Entertainment   E10+
## 6140                                                                    
## 6141                                                                    
## 6142                                                                    
## 6143                                                                    
## 6144                                            Sidhe Interactive      M
## 6145                                                                    
## 6146                                             Griptonite Games      T
## 6147                                                                    
## 6148                                           Avalanche Software      E
## 6149                                                                    
## 6150                                  Atomic Planet Entertainment      E
## 6151                                                  Codemasters      M
## 6152                                            High Moon Studios      T
## 6153                                                                    
## 6154                                               Ubisoft Quebec      E
## 6155                                             Griptonite Games      T
## 6156                                                    Sony Bend      T
## 6157                                                                    
## 6158                                       Paradigm Entertainment      T
## 6159                                                                    
## 6160                                       SCEA San Diego Studios      E
## 6161                                                                    
## 6162                                       Pipe Dream Interactive      E
## 6163                                      Reflections Interactive      M
## 6164                                                                    
## 6165                                               Papaya Studios   E10+
## 6166                                                                    
## 6167                                                 Inti Creates      E
## 6168                                          Paradox Development      M
## 6169                                           Disney Interactive      E
## 6170                                      Neversoft Entertainment      T
## 6171                                                   Team Ninja      T
## 6172                                               Volatile Games      M
## 6173                                                 Media Vision      T
## 6174                                                                    
## 6175                                                       Midway      E
## 6176                                                                    
## 6177                                       Ignition Entertainment      T
## 6178                                                     Robomodo      E
## 6179                                   Disney Interactive Studios      E
## 6180                                                                    
## 6181                                                    EA Canada      E
## 6182                                            Traveller's Tales      T
## 6183                                                                    
## 6184                                            Creative Assembly      M
## 6185                                                                    
## 6186                                                Visual Impact      E
## 6187                                                      Bullets      T
## 6188                                        Black Lantern Studios      E
## 6189                                                   Activision      T
## 6190                                                                    
## 6191                                                          THQ      E
## 6192                                                         KCET      M
## 6193                                                    Rebellion      M
## 6194                                                  Indies Zero      E
## 6195                                                 Toys for Bob   E10+
## 6196                                                                    
## 6197                                                          THQ      E
## 6198                                                       Midway      E
## 6199                                                         GRIN      M
## 6200                                              Electronic Arts      E
## 6201                                                   Mass Media      E
## 6202                                              EA Bright Light      E
## 6203                                                Zindagi Games   E10+
## 6204                                                                    
## 6205                                                                    
## 6206                                                       Takara      E
## 6207                                                         Zoom      T
## 6208                                                Sensory Sweep      E
## 6209                                                                    
## 6210                                                                    
## 6211                                        HB Studios Multimedia      E
## 6212                                               Telltale Games      M
## 6213                                                                    
## 6214                                                                    
## 6215                                                 Toys for Bob   E10+
## 6216                                                     Land Ho!      E
## 6217                                                     Sega AM2      T
## 6218                                                    LucasArts      T
## 6219                                         Exient Entertainment      E
## 6220                                                                    
## 6221                                                                    
## 6222                                                     Coresoft      T
## 6223                                                                    
## 6224                                                                    
## 6225                                                                    
## 6226                                                 Z-Axis, Ltd.      T
## 6227                                                    Ganbarion      T
## 6228                                                    Sega Toys      E
## 6229                                                                    
## 6230                                                  Blitz Games   E10+
## 6231                                                        Exakt      M
## 6232                                   Acclaim Studios Cheltenham      T
## 6233                                                    EA Canada      E
## 6234                                                    AWE Games   E10+
## 6235                                                                    
## 6236                                                         KCET      T
## 6237                                               Presto Studios      E
## 6238                                                        Atlus      M
## 6239                                                                    
## 6240                                                                    
## 6241                                               Visceral Games      M
## 6242                                                                    
## 6243                                                                    
## 6244                                                                    
## 6245                                                                    
## 6246                                             SCE Japan Studio      E
## 6247                                                   Activision   E10+
## 6248                                                                    
## 6249                                           Sand Grain Studios      T
##  [ reached 'max' / getOption("max.print") -- omitted 10470 rows ]

#data inspection

head(VIDEOGS)
##                       Name Platform Year_of_Release        Genre Publisher
## 1               Wii Sports      Wii            2006       Sports  Nintendo
## 2        Super Mario Bros.      NES            1985     Platform  Nintendo
## 3           Mario Kart Wii      Wii            2008       Racing  Nintendo
## 4        Wii Sports Resort      Wii            2009       Sports  Nintendo
## 5 Pokemon Red/Pokemon Blue       GB            1996 Role-Playing  Nintendo
## 6                   Tetris       GB            1989       Puzzle  Nintendo
##   NA_Sales EU_Sales JP_Sales Other_Sales Global_Sales Critic_Score Critic_Count
## 1    41.36    28.96     3.77        8.45        82.53           76           51
## 2    29.08     3.58     6.81        0.77        40.24           NA           NA
## 3    15.68    12.76     3.79        3.29        35.52           82           73
## 4    15.61    10.93     3.28        2.95        32.77           80           73
## 5    11.27     8.89    10.22        1.00        31.37           NA           NA
## 6    23.20     2.26     4.22        0.58        30.26           NA           NA
##   User_Score User_Count Developer Rating
## 1          8        322  Nintendo      E
## 2                    NA                 
## 3        8.3        709  Nintendo      E
## 4          8        192  Nintendo      E
## 5                    NA                 
## 6                    NA
glimpse(VIDEOGS)
## Observations: 16,719
## Variables: 16
## $ Name            <fct> Wii Sports, Super Mario Bros., Mario Kart Wii, Wii Sp…
## $ Platform        <fct> Wii, NES, Wii, Wii, GB, GB, DS, Wii, Wii, NES, DS, DS…
## $ Year_of_Release <fct> 2006, 1985, 2008, 2009, 1996, 1989, 2006, 2006, 2009,…
## $ Genre           <fct> Sports, Platform, Racing, Sports, Role-Playing, Puzzl…
## $ Publisher       <fct> Nintendo, Nintendo, Nintendo, Nintendo, Nintendo, Nin…
## $ NA_Sales        <dbl> 41.36, 29.08, 15.68, 15.61, 11.27, 23.20, 11.28, 13.9…
## $ EU_Sales        <dbl> 28.96, 3.58, 12.76, 10.93, 8.89, 2.26, 9.14, 9.18, 6.…
## $ JP_Sales        <dbl> 3.77, 6.81, 3.79, 3.28, 10.22, 4.22, 6.50, 2.93, 4.70…
## $ Other_Sales     <dbl> 8.45, 0.77, 3.29, 2.95, 1.00, 0.58, 2.88, 2.84, 2.24,…
## $ Global_Sales    <dbl> 82.53, 40.24, 35.52, 32.77, 31.37, 30.26, 29.80, 28.9…
## $ Critic_Score    <int> 76, NA, 82, 80, NA, NA, 89, 58, 87, NA, NA, 91, NA, 8…
## $ Critic_Count    <int> 51, NA, 73, 73, NA, NA, 65, 41, 80, NA, NA, 64, NA, 6…
## $ User_Score      <fct> 8, , 8.3, 8, , , 8.5, 6.6, 8.4, , , 8.6, , 7.7, 6.3, …
## $ User_Count      <int> 322, NA, 709, 192, NA, NA, 431, 129, 594, NA, NA, 464…
## $ Developer       <fct> Nintendo, , Nintendo, Nintendo, , , Nintendo, Nintend…
## $ Rating          <fct> E, , E, E, , , E, E, E, , , E, , E, E, E, M, M, , E, …
summary(VIDEOGS)
##                           Name          Platform    Year_of_Release
##  Need for Speed: Most Wanted:   12   PS2    :2161   2008   :1427   
##  FIFA 14                    :    9   DS     :2152   2009   :1426   
##  LEGO Marvel Super Heroes   :    9   PS3    :1330   2010   :1254   
##  Madden NFL 07              :    9   Wii    :1320   2007   :1196   
##  Ratatouille                :    9   X360   :1262   2011   :1136   
##  Angry Birds Star Wars      :    8   PSP    :1208   2006   :1006   
##  (Other)                    :16663   (Other):7286   (Other):9274   
##           Genre                             Publisher        NA_Sales      
##  Action      :3370   Electronic Arts             : 1356   Min.   : 0.0000  
##  Sports      :2348   Activision                  :  985   1st Qu.: 0.0000  
##  Misc        :1750   Namco Bandai Games          :  939   Median : 0.0800  
##  Role-Playing:1500   Ubisoft                     :  933   Mean   : 0.2633  
##  Shooter     :1323   Konami Digital Entertainment:  834   3rd Qu.: 0.2400  
##  Adventure   :1301   THQ                         :  715   Max.   :41.3600  
##  (Other)     :5127   (Other)                     :10957                    
##     EU_Sales         JP_Sales         Other_Sales        Global_Sales    
##  Min.   : 0.000   Min.   : 0.00000   Min.   : 0.00000   Min.   : 0.0100  
##  1st Qu.: 0.000   1st Qu.: 0.00000   1st Qu.: 0.00000   1st Qu.: 0.0600  
##  Median : 0.020   Median : 0.00000   Median : 0.01000   Median : 0.1700  
##  Mean   : 0.145   Mean   : 0.07759   Mean   : 0.04734   Mean   : 0.5336  
##  3rd Qu.: 0.110   3rd Qu.: 0.04000   3rd Qu.: 0.03000   3rd Qu.: 0.4700  
##  Max.   :28.960   Max.   :10.22000   Max.   :10.57000   Max.   :82.5300  
##                                                         NA's   :2        
##   Critic_Score    Critic_Count      User_Score     User_Count     
##  Min.   :13.00   Min.   :  3.00          :6704   Min.   :    4.0  
##  1st Qu.:60.00   1st Qu.: 12.00   tbd    :2425   1st Qu.:   10.0  
##  Median :71.00   Median : 21.00   7.8    : 324   Median :   24.0  
##  Mean   :68.97   Mean   : 26.36   8      : 290   Mean   :  162.2  
##  3rd Qu.:79.00   3rd Qu.: 36.00   8.2    : 282   3rd Qu.:   81.0  
##  Max.   :98.00   Max.   :113.00   8.3    : 254   Max.   :10665.0  
##  NA's   :8582    NA's   :8582     (Other):6440   NA's   :9129     
##      Developer        Rating    
##           :6623          :6769  
##  Ubisoft  : 204   E      :3991  
##  EA Sports: 172   T      :2961  
##  EA Canada: 167   M      :1563  
##  Konami   : 162   E10+   :1420  
##  Capcom   : 139   EC     :   8  
##  (Other)  :9252   (Other):   7
names(VIDEOGS)
##  [1] "Name"            "Platform"        "Year_of_Release" "Genre"          
##  [5] "Publisher"       "NA_Sales"        "EU_Sales"        "JP_Sales"       
##  [9] "Other_Sales"     "Global_Sales"    "Critic_Score"    "Critic_Count"   
## [13] "User_Score"      "User_Count"      "Developer"       "Rating"
dim(VIDEOGS)
## [1] 16719    16

#class of some variables

class(VIDEOGS$Name)
## [1] "factor"
class(VIDEOGS$Platform)
## [1] "factor"
class(VIDEOGS$Publisher)
## [1] "factor"
class(VIDEOGS$Year_of_Release)
## [1] "factor"
class(VIDEOGS$Genre)
## [1] "factor"

#load package

library(psych)
## 
## Attaching package: 'psych'
## The following objects are masked from 'package:ggplot2':
## 
##     %+%, alpha
describe(VIDEOGS)
##                  vars     n    mean      sd  median trimmed     mad   min
## Name*               1 16719 5830.14 3345.05 5898.00 5844.17 4306.95  1.00
## Platform*           2 16719   18.74    8.29   19.00   18.70   10.38  1.00
## Year_of_Release*    3 16719   27.71    6.08   29.00   28.07    4.45  1.00
## Genre*              4 16719    7.76    4.41    8.00    7.65    5.93  1.00
## Publisher*          5 16719  302.15  183.01  332.00  306.78  274.28  1.00
## NA_Sales            6 16719    0.26    0.81    0.08    0.13    0.12  0.00
## EU_Sales            7 16719    0.15    0.50    0.02    0.06    0.03  0.00
## JP_Sales            8 16719    0.08    0.31    0.00    0.02    0.00  0.00
## Other_Sales         9 16719    0.05    0.19    0.01    0.02    0.01  0.00
## Global_Sales       10 16717    0.53    1.55    0.17    0.27    0.21  0.01
## Critic_Score       11  8137   68.97   13.94   71.00   69.88   13.34 13.00
## Critic_Count       12  8137   26.36   18.98   21.00   23.85   16.31  3.00
## User_Score*        13 16719   46.36   39.47   61.00   45.70   53.37  1.00
## User_Count         14  7590  162.23  561.28   24.00   49.96   26.69  4.00
## Developer*         15 16719  514.29  570.72  302.00  445.28  446.26  1.00
## Rating*            16 16719    3.71    3.01    3.00    3.39    2.97  1.00
##                       max    range  skew kurtosis    se
## Name*            11563.00 11562.00 -0.03    -1.21 25.87
## Platform*           33.00    32.00 -0.05    -0.99  0.06
## Year_of_Release*    41.00    40.00 -0.80     1.62  0.05
## Genre*              15.00    14.00  0.08    -1.35  0.03
## Publisher*         583.00   582.00 -0.15    -1.39  1.42
## NA_Sales            41.36    41.36 18.77   648.43  0.01
## EU_Sales            28.96    28.96 18.85   755.36  0.00
## JP_Sales            10.22    10.22 11.21   194.23  0.00
## Other_Sales         10.57    10.57 24.58  1054.69  0.00
## Global_Sales        82.53    82.52 17.37   603.78  0.01
## Critic_Score        98.00    85.00 -0.61     0.14  0.15
## Critic_Count       113.00   110.00  1.15     1.03  0.21
## User_Score*         97.00    96.00 -0.11    -1.73  0.31
## User_Count       10665.00 10661.00  9.03   112.41  6.44
## Developer*        1697.00  1696.00  0.69    -1.00  4.41
## Rating*              9.00     8.00  0.78    -0.92  0.02

#Sales trend around the regions of the world according to platforms, genres, names and publishers. #Sales in North America

boxplot(VIDEOGS$NA_Sales, main="Sales in North America", xlab="Sales", ylab="frequency", vertical = TRUE)

summary(VIDEOGS$NA_Sales)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##  0.0000  0.0000  0.0800  0.2633  0.2400 41.3600

#sales in Europe

boxplot(VIDEOGS$EU_Sales, main="Sales in Europe", xlab="Sales", ylab="frequency", vertical = TRUE)

summary(VIDEOGS$EU_Sales)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##   0.000   0.000   0.020   0.145   0.110  28.960

#sales in Japan

boxplot(VIDEOGS$JP_Sales, main="Sales in Japan", xlab="Sales", ylab="frequency", vertical = TRUE)

summary(VIDEOGS$JP_Sales)
##     Min.  1st Qu.   Median     Mean  3rd Qu.     Max. 
##  0.00000  0.00000  0.00000  0.07759  0.04000 10.22000

#other sales

boxplot(VIDEOGS$Other_Sales, main="Sales in Japan", xlab="Sales", ylab="frequency", vertical = TRUE)

summary(VIDEOGS$JP_Sales)
##     Min.  1st Qu.   Median     Mean  3rd Qu.     Max. 
##  0.00000  0.00000  0.00000  0.07759  0.04000 10.22000

#Global sales

boxplot(VIDEOGS$Global_Sales, main="Sales in Japan", xlab="Sales", ylab="frequency", vertical = TRUE)

summary(VIDEOGS$Global_Sales)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max.    NA's 
##  0.0100  0.0600  0.1700  0.5336  0.4700 82.5300       2

#Popular Genre by sales at global level

VIDEOGS%>%
  group_by(Genre) %>%
  summarise(Count = n()) %>%
  plot_ly(x = ~Genre,
          y = ~Count,
          type = "bar", col="black")
## Warning: 'bar' objects don't have these attributes: 'col'
## Valid attributes include:
## 'type', 'visible', 'showlegend', 'legendgroup', 'opacity', 'name', 'uid', 'ids', 'customdata', 'meta', 'selectedpoints', 'hoverinfo', 'hoverlabel', 'stream', 'transforms', 'uirevision', 'x', 'x0', 'dx', 'y', 'y0', 'dy', 'text', 'hovertext', 'hovertemplate', 'textposition', 'insidetextanchor', 'textangle', 'textfont', 'insidetextfont', 'outsidetextfont', 'constraintext', 'cliponaxis', 'orientation', 'base', 'offset', 'width', 'marker', 'offsetgroup', 'alignmentgroup', 'selected', 'unselected', 'r', 't', '_deprecated', 'error_x', 'error_y', 'xcalendar', 'ycalendar', 'xaxis', 'yaxis', 'idssrc', 'customdatasrc', 'metasrc', 'hoverinfosrc', 'xsrc', 'ysrc', 'textsrc', 'hovertextsrc', 'hovertemplatesrc', 'textpositionsrc', 'basesrc', 'offsetsrc', 'widthsrc', 'rsrc', 'tsrc', 'key', 'set', 'frame', 'transforms', '_isNestedKey', '_isSimpleKey', '_isGraticule', '_bbox'

#From the bar chart above, Action Genre games yielded the highest sales globally. ##DC and PS were the platforms that benefitted with the highest sales at the global level. Although X360 and WiiU also strived at the global the global sales.

VIDEOGS%>%
  group_by(Platform) %>%
  summarise(Count = n()) %>%
  plot_ly(x = ~Platform,
          y = ~Count,
          type = "bar")

#Sales by publishers #The bar chart revealed that Electronic Arts was the publisher with the highest sales.

VIDEOGS%>%
  group_by(Publisher) %>%
  summarise(Count = n()) %>%
  plot_ly(x = ~Publisher,
          y = ~Count,
          type = "bar")

#top sales by Platforms by region #The top platforms by sales in different region were DS, PS, PS2, PS3, WiiU and X360

VIDEOGS %>%
  gather("Region", "Value", c("NA_Sales", "EU_Sales", "JP_Sales", "Other_Sales")) %>%
  group_by(Region, Platform) %>%
  summarize(Sales = sum(Value)) %>%
  top_n(n = 3) %>%
  ggplot(aes(x = Region, y = Sales, group = Region, fill = Platform)) +
  geom_col(position = "stack") +
  scale_fill_viridis(discrete = TRUE) +
  labs(title = "Top Genre by Sales per Region")
## Selecting by Sales

#Top sold games in the regions of the world

VIDEOGS %>%
  gather("Region", "Value", c("NA_Sales", "EU_Sales", "JP_Sales", "Other_Sales")) %>%
  group_by(Region, Name) %>%
  summarize(Sales = sum(Value)) %>%
  top_n(n = 3) %>%
  ggplot(aes(x = Region, y = Sales, group = Region, fill = Name)) +
  geom_col(position = "stack") +
  scale_fill_viridis(discrete = TRUE) +
  labs(title = "Top Genre by Sales per Region")
## Selecting by Sales

#Top sold genres according to regions #Action, Role-playing, Shooter and Sport

VIDEOGS %>%
  gather("Region", "Value", c("NA_Sales", "EU_Sales", "JP_Sales", "Other_Sales")) %>%
  group_by(Region, Genre) %>%
  summarize(Sales = sum(Value)) %>%
  top_n(n = 3) %>%
  ggplot(aes(x = Region, y = Sales, group = Region, fill = Genre)) +
  geom_col(position = "stack") +
  scale_fill_viridis(discrete = TRUE) +
  labs(title = "Top Genre by Sales per Region")
## Selecting by Sales

#total sales per year at global level

tot_year <- aggregate(VIDEOGS$Global_Sales, by=list(Year=VIDEOGS$Year), sum)
plot(tot_year)

data_frame(tot_year)
## Warning: `data_frame()` is deprecated, use `tibble()`.
## This warning is displayed once per session.
## # A tibble: 41 x 1
##    tot_year$Year    $x
##    <fct>         <dbl>
##  1 1980           11.4
##  2 1981           35.8
##  3 1982           28.9
##  4 1983           16.8
##  5 1984           50.4
##  6 1985           53.9
##  7 1986           37.1
##  8 1987           21.7
##  9 1988           47.2
## 10 1989           73.4
## # … with 31 more rows

#Global Sales per genre

Glb_sales <- aggregate(VIDEOGS$Global_Sales, by=list(Genre=VIDEOGS$Genre), sum)
data.table(Glb_sales)
##                           Genre       x
##  1:                                2.42
##  2:                      Action 1745.27
##  3:                   Adventure  237.57
##  4:                    Fighting  447.48
##  5:                Idea Factory      NA
##  6:                        Misc  803.18
##  7:                    Platform  828.08
##  8:                      Puzzle  243.02
##  9:                      Racing  728.90
## 10:                Role-Playing  934.40
## 11:                     Shooter 1052.94
## 12:                  Simulation  390.42
## 13: Sony Computer Entertainment      NA
## 14:                      Sports 1332.00
## 15:                    Strategy  174.50
plot(Glb_sales)

#number of games released per #the output revealed that the highest number of games was produced in 2008 with a total of 1427 games which was followed by the year 2007 with 1426.

VIDEOGS %>%
  group_by(Year_of_Release) %>%
  summarize(Number_of_games_each_year = n())
## # A tibble: 41 x 2
##    Year_of_Release Number_of_games_each_year
##    <fct>                               <int>
##  1 1980                                    9
##  2 1981                                   46
##  3 1982                                   36
##  4 1983                                   17
##  5 1984                                   14
##  6 1985                                   14
##  7 1986                                   21
##  8 1987                                   16
##  9 1988                                   15
## 10 1989                                   17
## # … with 31 more rows

#PLOT

VIDEOGS %>%
  group_by(Year_of_Release) %>%
  summarize(Number_of_games_each_year = n()) %>%
  ggplot(aes(x = Year_of_Release, y = Number_of_games_each_year)) +
  geom_col(fill = "red") +
  theme(axis.text.x = element_text(angle = 90)) +
  labs(title = "Games released per Year", x = "Year", y = "Sales (units)")

#a simple correlation matrix was carried out between sales

library(corrplot)
## corrplot 0.84 loaded
VIDEOGS[, c("NA_Sales", "EU_Sales", "JP_Sales", "Other_Sales", "Global_Sales")] %>%
  cor(method = "pearson") %>%
  corrplot::corrplot(addCoef.col = "white", type="upper")

#We considered the relationship between Sales in other regions against the global sales.

par(mfrow=c(1,4))
with(VIDEOGS, plot(NA_Sales, Global_Sales))
with(VIDEOGS, plot(EU_Sales, Global_Sales))
with(VIDEOGS, plot(JP_Sales, Global_Sales))
with(VIDEOGS, plot(Other_Sales, Global_Sales))

#The result revealed that there is linear relationship between regional sales and global sales. #we further considered linear models between sales in all the regions and genres in the study since action Genres have dorminated sales. #North America

fit <- lm( NA_Sales ~ Genre, VIDEOGS)
summary(fit)
## 
## Call:
## lm(formula = NA_Sales ~ Genre, data = VIDEOGS)
## 
## Residuals:
##    Min     1Q Median     3Q    Max 
## -0.890 -0.233 -0.151 -0.013 41.069 
## 
## Coefficients:
##                                  Estimate Std. Error t value Pr(>|t|)
## (Intercept)                        0.8900     0.5711   1.558    0.119
## GenreAction                       -0.6292     0.5712  -1.101    0.271
## GenreAdventure                    -0.8091     0.5715  -1.416    0.157
## GenreFighting                     -0.6269     0.5717  -1.096    0.273
## GenreIdea Factory                 -0.8900     0.9891  -0.900    0.368
## GenreMisc                         -0.6573     0.5714  -1.150    0.250
## GenrePlatform                     -0.3883     0.5717  -0.679    0.497
## GenrePuzzle                       -0.6782     0.5721  -1.185    0.236
## GenreRacing                       -0.6023     0.5715  -1.054    0.292
## GenreRole-Playing                 -0.6695     0.5715  -1.172    0.241
## GenreShooter                      -0.4424     0.5715  -0.774    0.439
## GenreSimulation                   -0.6815     0.5717  -1.192    0.233
## GenreSony Computer Entertainment  -0.8900     0.9891  -0.900    0.368
## GenreSports                       -0.5985     0.5713  -1.048    0.295
## GenreStrategy                     -0.7896     0.5719  -1.381    0.167
## 
## Residual standard error: 0.8076 on 16704 degrees of freedom
## Multiple R-squared:  0.01527,    Adjusted R-squared:  0.01444 
## F-statistic:  18.5 on 14 and 16704 DF,  p-value: < 2.2e-16
plot(fit)
## Warning: not plotting observations with leverage one:
##   13587

## Warning: not plotting observations with leverage one:
##   13587

## Warning in sqrt(crit * p * (1 - hh)/hh): 产生了NaNs
## Warning in sqrt(crit * p * (1 - hh)/hh): 产生了NaNs

#linear relationship between sales in Europe and Genre

fit <- lm( EU_Sales ~ Genre, VIDEOGS)
summary(fit)
## 
## Call:
## lm(formula = EU_Sales ~ Genre, data = VIDEOGS)
## 
## Residuals:
##     Min      1Q  Median      3Q     Max 
## -0.2650 -0.1440 -0.1058 -0.0294 28.7995 
## 
## Coefficients:
##                                  Estimate Std. Error t value Pr(>|t|)
## (Intercept)                       0.26500    0.35427   0.748    0.454
## GenreAction                      -0.11096    0.35437  -0.313    0.754
## GenreAdventure                   -0.21616    0.35454  -0.610    0.542
## GenreFighting                    -0.14683    0.35469  -0.414    0.679
## GenreIdea Factory                -0.22500    0.61361  -0.367    0.714
## GenreMisc                        -0.14343    0.35447  -0.405    0.686
## GenrePlatform                    -0.03938    0.35467  -0.111    0.912
## GenrePuzzle                      -0.17878    0.35488  -0.504    0.614
## GenreRacing                      -0.07564    0.35455  -0.213    0.831
## GenreRole-Playing                -0.13919    0.35451  -0.393    0.695
## GenreShooter                     -0.02514    0.35454  -0.071    0.943
## GenreSimulation                  -0.13511    0.35467  -0.381    0.703
## GenreSony Computer Entertainment -0.18500    0.61361  -0.301    0.763
## GenreSports                      -0.10453    0.35442  -0.295    0.768
## GenreStrategy                    -0.19887    0.35479  -0.561    0.575
## 
## Residual standard error: 0.501 on 16704 degrees of freedom
## Multiple R-squared:  0.009829,   Adjusted R-squared:  0.009 
## F-statistic: 11.84 on 14 and 16704 DF,  p-value: < 2.2e-16
plot(fit)
## Warning: not plotting observations with leverage one:
##   13587

## Warning: not plotting observations with leverage one:
##   13587

## Warning in sqrt(crit * p * (1 - hh)/hh): 产生了NaNs
## Warning in sqrt(crit * p * (1 - hh)/hh): 产生了NaNs

#linear relationship between sales in Japan and Genre

fit <- lm( JP_Sales ~ Genre, VIDEOGS)
summary(fit)
## 
## Call:
## lm(formula = JP_Sales ~ Genre, data = VIDEOGS)
## 
## Residuals:
##     Min      1Q  Median      3Q     Max 
## -0.2370 -0.0618 -0.0479 -0.0279  9.9830 
## 
## Coefficients:
##                                  Estimate Std. Error t value Pr(>|t|)
## (Intercept)                       0.01500    0.21474   0.070    0.944
## GenreAction                       0.03291    0.21480   0.153    0.878
## GenreAdventure                    0.02511    0.21491   0.117    0.907
## GenreFighting                     0.08804    0.21499   0.409    0.682
## GenreIdea Factory                -0.01500    0.37194  -0.040    0.968
## GenreMisc                         0.04678    0.21486   0.218    0.828
## GenrePlatform                     0.13233    0.21498   0.616    0.538
## GenrePuzzle                       0.08381    0.21511   0.390    0.697
## GenreRacing                       0.03040    0.21491   0.141    0.887
## GenreRole-Playing                 0.22197    0.21488   1.033    0.302
## GenreShooter                      0.01430    0.21490   0.067    0.947
## GenreSimulation                   0.05800    0.21499   0.270    0.787
## GenreSony Computer Entertainment -0.01500    0.37194  -0.040    0.968
## GenreSports                       0.04273    0.21483   0.199    0.842
## GenreStrategy                     0.05771    0.21505   0.268    0.788
## 
## Residual standard error: 0.3037 on 16704 degrees of freedom
## Multiple R-squared:  0.03376,    Adjusted R-squared:  0.03295 
## F-statistic: 41.69 on 14 and 16704 DF,  p-value: < 2.2e-16
plot(fit)
## Warning: not plotting observations with leverage one:
##   13587

## Warning: not plotting observations with leverage one:
##   13587

## Warning in sqrt(crit * p * (1 - hh)/hh): 产生了NaNs
## Warning in sqrt(crit * p * (1 - hh)/hh): 产生了NaNs

#linear relationship between other sales and Genre

fit <- lm(Other_Sales ~ Genre, VIDEOGS)
summary(fit)
## 
## Call:
## lm(formula = Other_Sales ~ Genre, data = VIDEOGS)
## 
## Residuals:
##     Min      1Q  Median      3Q     Max 
## -0.0787 -0.0473 -0.0325 -0.0073 10.5152 
## 
## Coefficients:
##                                    Estimate Std. Error t value Pr(>|t|)
## (Intercept)                       4.000e-02  1.315e-01   0.304    0.761
## GenreAction                       1.478e-02  1.316e-01   0.112    0.911
## GenreAdventure                   -2.733e-02  1.316e-01  -0.208    0.836
## GenreFighting                     2.827e-03  1.317e-01   0.021    0.983
## GenreIdea Factory                 8.082e-12  2.278e-01   0.000    1.000
## GenreMisc                         2.509e-03  1.316e-01   0.019    0.985
## GenrePlatform                     1.753e-02  1.317e-01   0.133    0.894
## GenrePuzzle                      -1.866e-02  1.317e-01  -0.142    0.887
## GenreRacing                       2.093e-02  1.316e-01   0.159    0.874
## GenreRole-Playing                -2.467e-04  1.316e-01  -0.002    0.999
## GenreShooter                      3.869e-02  1.316e-01   0.294    0.769
## GenreSimulation                  -4.817e-03  1.317e-01  -0.037    0.971
## GenreSony Computer Entertainment  4.000e-02  2.278e-01   0.176    0.861
## GenreSports                       1.729e-02  1.316e-01   0.131    0.895
## GenreStrategy                    -2.411e-02  1.317e-01  -0.183    0.855
## 
## Residual standard error: 0.186 on 16704 degrees of freedom
## Multiple R-squared:  0.00849,    Adjusted R-squared:  0.007659 
## F-statistic: 10.22 on 14 and 16704 DF,  p-value: < 2.2e-16
plot(fit)
## Warning: not plotting observations with leverage one:
##   13587

## Warning: not plotting observations with leverage one:
##   13587

## Warning in sqrt(crit * p * (1 - hh)/hh): 产生了NaNs
## Warning in sqrt(crit * p * (1 - hh)/hh): 产生了NaNs

#linear relationship between global sales and Genre

fit <- lm(Global_Sales ~ Genre, VIDEOGS)
summary(fit)
## 
## Call:
## lm(formula = Global_Sales ~ Genre, data = VIDEOGS)
## 
## Residuals:
##    Min     1Q Median     3Q    Max 
## -1.180 -0.457 -0.307 -0.039 81.963 
## 
## Coefficients:
##                   Estimate Std. Error t value Pr(>|t|)
## (Intercept)         1.2100     1.0883   1.112    0.266
## GenreAction        -0.6921     1.0886  -0.636    0.525
## GenreAdventure     -1.0274     1.0891  -0.943    0.346
## GenreFighting      -0.6829     1.0896  -0.627    0.531
## GenreMisc          -0.7510     1.0889  -0.690    0.490
## GenrePlatform      -0.2775     1.0895  -0.255    0.799
## GenrePuzzle        -0.7910     1.0902  -0.726    0.468
## GenreRacing        -0.6264     1.0892  -0.575    0.565
## GenreRole-Playing  -0.5871     1.0890  -0.539    0.590
## GenreShooter       -0.4141     1.0891  -0.380    0.704
## GenreSimulation    -0.7633     1.0895  -0.701    0.484
## GenreSports        -0.6427     1.0888  -0.590    0.555
## GenreStrategy      -0.9545     1.0899  -0.876    0.381
## 
## Residual standard error: 1.539 on 16704 degrees of freedom
##   (2 observations deleted due to missingness)
## Multiple R-squared:  0.01221,    Adjusted R-squared:  0.0115 
## F-statistic:  17.2 on 12 and 16704 DF,  p-value: < 2.2e-16
plot(fit)

#with reference to the fitted plots, it is obvious that genres has no influence on the sales of games in all the regions. #we then looked at the relationship between sales and Genre and Rating #The result revealed a strong relationship between sales and Genre.

VIDEOGS %>%
  ggplot(aes(x = Rating, y = Genre, col = Genre)) +
  geom_jitter(alpha = 0.6, pch = 25) +
  theme(legend.position = "none") +
  scale_color_viridis(discrete = TRUE)